Advertisement
Guest User

template

a guest
Apr 4th, 2020
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.57 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. #define st first
  6. #define nd second
  7. #define pb push_back
  8. #define db(x) cerr << #x << " == " << x << endl
  9.  
  10. typedef long long ll;
  11. typedef long double ld;
  12. typedef pair<int, int> pii;
  13. typedef pair<ll, ll> pll;
  14. typedef pair<ll, pll> plll;
  15. typedef vector<int> vi;
  16. typedef vector<vi> vii;
  17. const ld EPS = 1e-9, PI = acos(-1.);
  18. const ll LINF = 0x3f3f3f3f3f3f3f3f;
  19. const int INF = 0x3f3f3f3f, MOD = 1e9 + 7;
  20. const int N = 1e5 + 5;
  21.  
  22. int main(){
  23.     ios_base::sync_with_stdio(false);
  24.     cin.tie(NULL);
  25.    
  26.     return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement