Advertisement
Kevin_Zhang

Untitled

Dec 16th, 2020
1,284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.72 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. using ll = long long;
  4. #define pb emplace_back
  5. #define AI(i) begin(i), end(i)
  6. template<class T> bool chmin(T &a, T b) { return b < a ? (a = b, true) : false; }
  7. template<class T> bool chmax(T &a, T b) { return a < b ? (a = b, true) : false; }
  8. #ifdef KEV
  9. #define DE(args...) kout("[ " + string(#args) + " ] = ", args)
  10. void kout() { cerr << endl; }
  11. template<class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ', kout(b...); }
  12. template<class T> void debug(T L, T R) { while (L != R) cerr << *L << " \n"[next(L) == R], ++L; }
  13. #else
  14. #define DE(...) 0
  15. #define debug(...) 0
  16. #endif
  17. const int MAX_N = 300010;
  18. int32_t main() {
  19.     ios_base::sync_with_stdio(0), cin.tie(0);
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement