Guest User

Untitled

a guest
Mar 19th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. #include<cstdio>
  2. #include<cstdlib>
  3. #include<cstring>
  4. #include<cmath>
  5. #include<ctime>
  6. #include<cctype>
  7. #include<climits>
  8. #include<iostream>
  9. #include<string>
  10. #include<vector>
  11. #include<map>
  12. #include<list>
  13. #include<queue>
  14. #include<deque>
  15. #include<algorithm>
  16. #include<numeric>
  17. #include<utility>
  18. #include<complex>
  19. #include<memory>
  20. #include<functional>
  21.  
  22. using namespace std;
  23.  
  24. #define ALL(g) (g).begin(),(g).end()
  25. #define REP(i, x, n) for(int i = x; i < n; i++)
  26. #define rep(i,n) REP(i,0,n)
  27. #define rep2(a,b,c,d) REP(a,0,b)REP(c,0,d)
  28. #define F(i,j,k) fill(i[0],i[0]+j*j,k)
  29. #define P(p) cout<<(p)<<endl;
  30. #define EXIST(s,e) ((s).find(e)!=(s).end())
  31. #define INF 1<<25
  32. #define pb push_back
  33. #define N 1000
  34.  
  35. typedef vector<int> vi;
  36. typedef vector<long long> vl;
  37. typedef vector<double> vd;
  38. typedef pair<int,int> pii;
  39. typedef pair<long,long> pll;
  40. typedef long long ll;
  41. typedef vector<vector<int>> Matrix;
  42.  
  43. int main() {
  44. ios::sync_with_stdio(false);
  45. cin.tie(0);
  46.  
  47. return 0;
  48. }
Add Comment
Please, Sign In to add comment