Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. #pragma comment(linker, "/STACK:256000000")
  2.  
  3. #define _CRT_SECURE_NO_DEPRECATE
  4. #define _CRT_SECURE_NO_WARNINGS
  5. #define _USE_MATH_DEFINES
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include <math.h>
  9. #include <time.h>
  10. #include <string.h>
  11. #include <assert.h>
  12. #include <memory.h>
  13. #include <fstream>
  14. #include <iostream>
  15. #include <iomanip>
  16. #include <string>
  17. #include <sstream>
  18. #include <vector>
  19. #include <set>
  20. #include <map>
  21. #include <queue>
  22. #include <utility>
  23. #include <algorithm>
  24. #include <random>
  25. #include <bitset>
  26. #include <unordered_set>
  27. #include <unordered_map>
  28. #include <complex>
  29.  
  30. using namespace std;
  31.  
  32. typedef long long int64;
  33. typedef unsigned long long uint64;
  34. typedef pair<int, int> pii;
  35. typedef pair<int64, int64> pll;
  36. typedef pair<int64, int> pli;
  37. typedef pair<int, int64> pil;
  38. const int INF = (int)(1e9 + 1e5);
  39. const int64 LINF = (int64)(1e18);
  40. const int64 MX = 100500;
  41. const double EPS = 1e-9;
  42. #define sq(x) ((x)*(x))
  43. #define FAIL() (*(int*)(0))++
  44. #define ASSERT(exp) {if (!(exp)) exit(0);}
  45. #define y1 fjgjf
  46. #ifdef _MY_DEBUG
  47. #define I64d lld
  48. #endif
  49. typedef complex<double> comp;
  50. const int MOD = 1000000007;
  51.  
  52. int tnum;
  53.  
  54. const int MAXN = 100500;
  55.  
  56.  
  57. void init()
  58. {
  59. }
  60.  
  61. void solve()
  62. {
  63.  
  64. }
  65.  
  66. void print_answer()
  67. {
  68. }
  69.  
  70. void precalc()
  71. {
  72. }
  73.  
  74. void run()
  75. {
  76. #ifdef _MY_DEBUG
  77. freopen("input.txt", "rt", stdin); freopen("output.txt", "wt", stdout);
  78. #endif // _MY_DEBUG
  79. precalc();
  80. int t = 1; scanf ("%d", &t);
  81. for (tnum = 1; tnum <= t; ++tnum)
  82. {
  83. init();
  84. solve();
  85. print_answer();
  86. }
  87. }
  88. int main()
  89. {
  90. srand(90);
  91. ios_base::sync_with_stdio(false); cin.tie(0);
  92. run();
  93. return 0;
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement