Guest User

Untitled

a guest
May 19th, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. typedef long long ll;
  5. typedef unsigned long long ull;
  6.  
  7. #define endl '\n'
  8. #define ALL(a) (a).begin(),(a).end()
  9. #define CLR(a,x) memset((a),(x),sizeof(a))
  10. #define fast_io ios_base::sync_with_stdio(0); cin.tie(NULL);
  11. #define FOR(i, x, y) for (int i = (x); i < (y); i++)
  12. #define FOR1(i, x, y) for (int i = (x); i <= (y); i++)
  13. #define what_is(x) cerr << #x << " is " << (x) << endl;
  14. #define DB(x) cerr << __LINE__ << ": " << #x << " = " << (x) << endl
  15. #define debug(...) fprintf(stderr, __VA_ARGS__), fflush(stderr)
  16. #define time__(d) \
  17. for(long blockTime=NULL;(blockTime==NULL?(blockTime=clock())!=NULL:false); \
  18. debug("%s:%.4fs\n",(d),(double)(clock()-blockTime)/CLOCKS_PER_SEC))
  19. const int INF = (int)10e9+7; //1,000,000,007
  20. const int64_t LLINF = (int64_t)10e17+7; //100,000,000,000,000,007
  21. const int maxN = (int)10e5+5; //100,005
  22. #define EPS 10e-7 //epsilon
  23. #define pb push_back
  24. #define mp make_pair
  25.  
  26. typedef pair<int,int> pii;
  27. typedef pair<pii,int> ppii;
  28.  
  29.  
  30. void solve() {
  31.  
  32.  
  33. }
  34.  
  35. int main(){
  36.  
  37. // fast_io;
  38.  
  39. solve();
  40.  
  41.  
  42. // time__("program time");
  43. return 0;
  44. }
Add Comment
Please, Sign In to add comment