Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. #define _CRT_SECURE_NO_WARNINGS
  2.  
  3. #include <bits/stdc++.h>
  4. using namespace std;
  5.  
  6. typedef long long ll;
  7. typedef long double ld;
  8. typedef unsigned long long ull;
  9. typedef pair<int, int> pii;
  10. typedef pair<ll, ll> pll;
  11. typedef vector<int> vi;
  12. typedef vector<vi> vvi;
  13.  
  14. #define sc(x) scanf("%d", &x)
  15. #define sc2(x, y) scanf("%d%d", &x, &y)
  16. #define sc3(x, y, z) scanf("%d%d%d", &x, &y, &z)
  17. #define sc4(x, y, z, t) scanf("%d%d%d%d", &x, &y, &z, &t)
  18. #define print(x) printf("%d ", x)
  19. #define println(x) printf("%d\n", x)
  20. #define println2(x, y) printf("%d %d\n", x, y)
  21. #define println3(x, y, z) printf("%d %d %d\n", x, y, z)
  22. #define println4(x, y, z, t) printf("%d %d %d %d\n", x, y, z, t)
  23. #define mp make_pair
  24. #define pb push_back
  25. #define ft first
  26. #define sd second
  27. #define sz(x) (int)x.size()
  28. #define all(x) x.begin(), x.end()
  29. #define endl '\n' // CommentInInteractive
  30. #define DB(x) cerr << #x << " = " << x << endl
  31.  
  32. const ld eps = 1e-6;
  33. const int inf = INT_MAX;
  34. const ll INF = LLONG_MAX;
  35.  
  36. void solve() {
  37.  
  38. }
  39.  
  40. //#define FILES
  41. //#define TIME
  42.  
  43. int main() {
  44. ios_base::sync_with_stdio(false);
  45. cin.tie(nullptr); cout.tie(nullptr);
  46.  
  47. #ifdef FILES
  48. freopen("input.txt", "r", stdin);
  49. // freopen("output.txt", "w", stdout);
  50. #endif
  51.  
  52. auto start = chrono::high_resolution_clock::now();
  53. int t; sc(t);
  54. while (t--) solve();
  55. auto stop = chrono::high_resolution_clock::now();
  56.  
  57. #ifdef TIME
  58. cerr << chrono::duration_cast <chrono::milliseconds> (stop - start).count() << " ms\n";
  59. #endif
  60. return 0;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement