Advertisement
Guest User

Untitled

a guest
Sep 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. #ifdef LOCAL
  3. #define _GLIBCXX_DEBUG
  4. #define dbg(x) cerr << #x << " = " << x << char(10);
  5. #else
  6. #define dbg(x) ;
  7. #define cerr if(0) cerr
  8. // #pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math")
  9. // #pragma GCC target("sse,sse2,sse3,ssse3,sse4.1,sse4.2,avx,avx2,popcnt,tune=native")
  10. #endif
  11. #define forn(i, n) for (int i = 0; i < (int)(n); i++)
  12. #define all(x) (x).begin(), (x).end()
  13. #define pb push_back
  14. #define mkt make_tuple
  15. using namespace std;
  16. using ld = long double;
  17. using ll = long long;
  18. using vi = vector<int>;
  19. using vll = vector<ll>;
  20. const ld eps = 1e-8l;
  21. const int INF = 1e9 + 10;
  22. const ll INFL = 9 * 1e18;
  23. const ll MOD = 1e9 + 7;
  24. const ld Pi = acosl(-1.0l);
  25.  
  26. int main()
  27. {
  28. ios_base::sync_with_stdio(0);
  29. cin.tie(0);
  30. cout.precision(9);
  31. cout << fixed;
  32. #ifdef LOCAL
  33. assert(freopen("in", "r", stdin));
  34. assert(freopen("out", "w", stdout));
  35. assert(freopen("err", "w", stderr));
  36. #endif
  37.  
  38.  
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement