Advertisement
Abrar_Al_Samit

Layout

May 12th, 2022
649
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. #include <ext/pb_ds/assoc_container.hpp>
  2. #include <ext/pb_ds/tree_policy.hpp>
  3. #include <bits/stdc++.h>
  4.  
  5. using namespace std;
  6. using namespace __gnu_pbds;
  7.  
  8. template <class T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
  9.  
  10. void PlayGround() {
  11.  
  12. }
  13. int main() {
  14.   ios_base::sync_with_stdio(false);
  15.   cin.tie(NULL);
  16.   PlayGround();
  17.   return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement