fork download
  1. /* 29 . 03 . 2008 */
  2. #include <bits/stdc++.h>
  3. using namespace std ;
  4.  
  5. bool watbor = 1;
  6.  
  7. typedef long long ll ;
  8. typedef vector<int> vi ;
  9. typedef vector<pair<int,int>> vii ;
  10. typedef pair<int,int> pii ;
  11. typedef pair<ll,int> pli ;
  12. typedef pair<int,ll> pil ;
  13. typedef pair<ll,ll> pll ;
  14.  
  15. #define FOR(i,a,b) for(int i(a) ; i <= (int)b ; i++)
  16. #define FORD(i,a,b) for(int i(a) ; i >= (int)b ; i--)
  17. #define FORN(i,a,b) for(int i(a) ; i < (int)b ; i++)
  18. #define all(a) a.begin() , a.end()
  19. #define pb push_back
  20. #define fi first
  21. #define se second
  22. #define endl '\n'
  23. #define BIT(mask,i) ((mask>>(i))&1)
  24. #define builtin_popcount builtin_popcountll
  25. #define uni(a) sort(all(a)), a.resize(unique(all(a))-a.begin())
  26. #define MASK(a) (1ll << a)
  27.  
  28. int gcd(int x, int y) {return __gcd(x, y) ;}
  29. int lg(int x) {return __lg(x) ;}
  30. int lcm(int x, int y) {return x / __gcd(x, y) * y ;}
  31.  
  32. template <class T> bool maxi(T &x,T y) { if (x < y) { x = y ; return true ;} return false ;}
  33. template <class T> bool mini(T &x,T y) { if (x > y) { x = y ; return true ;} return false ;}
  34.  
  35. const int N = 2e5 + 5, M = 5e3 + 5, LG = __lg(N) + 1, base = 311 ;
  36. const int oo = 2e9, sm = 1e9 + 7, mod1 = 1e9 + 7, mod2 = 998244353 ;
  37. const long long inf = 1e18 ;
  38.  
  39.  
  40. void init(){
  41.  
  42.  
  43. }
  44.  
  45.  
  46.  
  47. void solve(){
  48.  
  49.  
  50. }
  51.  
  52. signed main(){
  53. ios_base::sync_with_stdio(0) ; cin.tie(0) ; cout.tie(0) ;
  54.  
  55. #define task ""
  56. if(fopen(task".inp","r")){
  57. freopen(task".inp","r",stdin) ;
  58. freopen(task".out","w",stdout) ;
  59. }
  60.  
  61. int tc ; tc = 1 ;
  62. if(watbor) cin >> tc ;
  63.  
  64. FOR(bqc, 1, tc) {
  65. init() ;
  66. solve() ;
  67. }
  68.  
  69. cerr << "\nTime : " << clock() * 0.001 << "s" << endl ;
  70. return 0 ;
  71. }
  72. /* Watbor */
Success #stdin #stdout #stderr 0.01s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Time : 5.214s