Advertisement
Guest User

C++ Template

a guest
Dec 20th, 2020
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.53 KB | None | 0 0
  1. #include "bits/stdc++.h"
  2. using namespace std;
  3. #define INF 0x3f3f3f3f
  4. #define LINF 0x3f3f3f3f3f3f3f3f
  5. #define endl "\n"
  6. #define pb push_back
  7. #define set(a, b) memset(a, b, sizeof(a));
  8. #define TRACE(x) cerr << #x << " = " << x << endl
  9. typedef long long ll;
  10. typedef unsigned long long ull;
  11. typedef pair<int, int> pii;
  12. typedef pair<ll, ll> pll;
  13. typedef pair<double, double> pdd;
  14. typedef pair<int, pair<int, int>> ppi;
  15.  
  16. const int maxN = 0, maxM = 0, mod = 1e9+7;
  17.  
  18. int32_t main(void) {
  19.     cin.tie(0)->sync_with_stdio(0);
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement