Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. #define rep(i, a, n) for(int i = (a);i < (n);i++)
  4. #define REP(i, n) rep(i, 0, n)
  5. #define all(e) (e).begin(), (e).end()
  6.  
  7. #ifdef LOCAL
  8. #define show(x) cerr << __LINE__ << " : " << #x << " = " << (x) << endl
  9. #else
  10. #define show(x) true
  11. #endif
  12.  
  13. using namespace std;
  14. using ll = long long;
  15. template<class T>
  16. using V = vector<T>;
  17.  
  18. template<class T, class U>
  19. void chmin(T &t, const U u) { if (t > u) t = u; }
  20.  
  21. template<class T, class U>
  22. void chmax(T &t, const U u) { if (t < u) t = u; }
  23.  
  24. const int INF = (1 << 30) - 1;
  25. const ll INFL = (ll) 5e15;
  26. const int MOD = 1e9 + 7;
  27.  
  28. int main() {
  29.  
  30.  
  31. return 0;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement