Advertisement
Guest User

Untitled

a guest
Oct 4th, 2012
445
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.11 KB | None | 0 0
  1. #pragma warning(disable: 4996)
  2. #pragma comment(linker,"/STACK:64000000")
  3. #include <iostream>
  4. #include <sstream>
  5. #include <stdio.h>
  6. #include <memory.h>
  7. #include <algorithm>
  8. #include <set>
  9. #include <map>
  10. #include <string>
  11. #include <cstring>
  12. #include <vector>
  13. #include <cmath>
  14. #include <queue>
  15. #include <deque>
  16. #include <stack>
  17. #include <cassert>
  18. #include <time.h>
  19. #include <bitset>
  20.  
  21. using namespace std;
  22.  
  23. #define mp make_pair
  24. #define pb push_back
  25. #define _(a,b) memset( (a), b, sizeof( a ) )
  26. #define all(a) a.begin(), a.end()
  27. #define sz(a) (int)a.size()
  28.  
  29. typedef unsigned long long ull;
  30. typedef long long lint;
  31. typedef pair < int , int > pii;
  32. typedef long double ld;
  33.  
  34. const int INF = 1000 * 1000 * 1000;
  35. const lint LINF = 1000000000000000000LL;
  36. const double eps = 1e-9;
  37.  
  38. void prepare(string s)
  39. {
  40. #ifdef _DEBUG
  41.     freopen("input.txt", "r", stdin);
  42. #else
  43.     if (sz(s) != 0)
  44.     {
  45.         freopen((s + ".in").c_str(),"r",stdin);
  46.         freopen((s + ".out").c_str(),"w",stdout);
  47.     }
  48. #endif
  49. }
  50.  
  51. bool solve()
  52. {
  53.    
  54.  
  55.     return false;
  56. }
  57.  
  58. int main()
  59. {
  60.     prepare("");
  61.  
  62.     while (solve())
  63.     {
  64.    
  65.     }
  66.     return 0;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement