Alex_tz307

CP-TEMPLATE

May 4th, 2021 (edited)
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.55 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. #include <ext/pb_ds/assoc_container.hpp>
  3. #include <ext/pb_ds/tree_policy.hpp>
  4.  
  5. using namespace std;
  6. using namespace __gnu_pbds;
  7. using oset = tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update>;
  8. using int64 = long long;
  9.  
  10. void fastIO() {
  11.     ios_base::sync_with_stdio(false);
  12.     cin.tie(nullptr);
  13.     cout.tie(nullptr);
  14. }
  15.  
  16. void test_case() {
  17.  
  18. }
  19.  
  20. void solve() {  
  21.   int T;
  22.   cin >> T;
  23.     for (int tc = 0; tc < T; ++tc)
  24.     test_case();
  25. }
  26.  
  27. int main() {
  28.     fastIO();
  29.     solve();
  30.     return 0;
  31. }
  32.  
Add Comment
Please, Sign In to add comment