makrusak

Template

Dec 27th, 2012
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.83 KB | None | 0 0
  1. #include <cstdio>
  2. #include <cstdlib>
  3. #include <iostream>
  4. #include <algorithm>
  5. #include <vector>
  6. #include <string>
  7. #include <string.h>
  8. #include <queue>
  9. #include <stack>
  10. #include <map>
  11. #include <set>
  12. #include <cmath>
  13. #include <sstream>
  14.  
  15. #define pb push_back
  16. #define mp make_pair
  17. #define PI 3.1415926535897932384626433832795
  18. #define sqr(x) (x)*(x)
  19. #define ALL(x) x.begin(), x.end()
  20. #define F first
  21. #define S second
  22. #define m0(x) memset(x,0,sizeof(x))
  23. #define m1(x) memset(x,-1,sizeof(x))
  24. #define pw(x) (1ull<<(x))
  25.  
  26. using namespace std;
  27. typedef long long ll;
  28. typedef unsigned long long ull;
  29. typedef long double ld;
  30. typedef pair<int,int> pii;
  31. const int INF = 2147483647;
  32. const ll LLINF = 9223372036854775807LL;
  33.  
  34. int main() {
  35.   //freopen("input.txt", "r", stdin);
  36.   //freopen("output.txt", "w", stdout);
  37.  
  38.   return 0;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment