fork download
  1. #include <bits/stdc++.h>
  2.  
  3. #include <ext/pb_ds/assoc_container.hpp>
  4. #include <ext/pb_ds/tree_policy.hpp>
  5.  
  6. #pragma GCC optimize ("-O3", "Ofast", "unroll-loops")
  7.  
  8. #define whole(O) O.begin (), O.end ()
  9.  
  10. #define tS(O) (int) O.size ()
  11.  
  12. #define sqr(O) (O) * (O)
  13. #define pw(O) (1LL << O)
  14.  
  15. using namespace std;
  16.  
  17. const long long Mod = 1e9 + 7;
  18. const int MaXn = 5 * 1e5 + 1;
  19.  
  20. using namespace __gnu_pbds;
  21.  
  22. template <typename O>
  23. using Ordered_Set = tree <O, null_type, less <O>, rb_tree_tag, tree_order_statistics_node_update>;
  24.  
  25. mt19937_64 rnd(chrono :: system_clock :: now ().time_since_epoch ().count ());
  26.  
  27. int main () {
  28.  
  29. ios_base :: sync_with_stdio (0);
  30. cin.tie (0); cout.tie (0);
  31.  
  32.  
  33. return 0;
  34. }
  35.  
Success #stdin #stdout 0s 4288KB
stdin
Standard input is empty
stdout
Standard output is empty