Salvens

Untitled

Jan 7th, 2024
1,020
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.52 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. #define int long long
  6.  
  7. #define IOS ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
  8.  
  9. //#include <ext/pb_ds/assoc_container.hpp>
  10. //using namespace __gnu_pbds;
  11. //typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
  12. std::mt19937 rnd(std::chrono::steady_clock::now().time_since_epoch().count());
  13.  
  14. const int INF = 1e18 + 7;
  15. const double EPS = 1e-10;
  16. const int MOD = 1e9 + 7;
  17. const int MAXN = 5e4 + 100;
  18.  
  19. inline void solve() {
  20.  
  21. }
  22.  
  23. int32_t main() {
  24.     IOS;
  25.     clock_t tStart = clock();
  26.  
  27.     int tt = 1;
  28. //    cin >> tt;
  29.     while (tt --> 0) {
  30.         solve();
  31.     }
  32. //    cerr << "Runtime is:" << (long double) (clock() - tStart) / CLOCKS_PER_SEC << '\n';
  33.     return 0;
  34. }
  35.  
  36. //████──█──█──███──████──███──█──█──█──█──███──█──█
  37. //█──█──██─█───█───█──█──█────█──█──█─█────█───██─█
  38. //████──█─██───█───█──█──███──████──██─────█───█─██
  39. //█──█──█──█───█───█──█────█──█──█──█─█────█───█──█
  40. //█──█──█──█───█───████──███──█──█──█──█──███──█──█
Advertisement
Add Comment
Please, Sign In to add comment