Advertisement
surajmateti

Templaee

Sep 23rd, 2021 (edited)
743
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.00 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. #define all(x)            (x).begin(),(x).end()
  4. #define sz(x)             (int)((x).size())
  5. #define f(i,b)            for(int i=0;i<b;i++)
  6. #define uniq(v)           (v).erase(unique(all(v)),(v).end())
  7. #define int               long long
  8. #define pb                push_back
  9. #define endl              "\n"
  10. #define debug(x)          cout<<#x<<"  "<<x<<"\n"
  11. #define ii                pair<int,int>
  12. #define vi                vector<int>
  13. #define vii               vector<pair<int,int>>
  14. const int mod = 1000000007;
  15. // const int mod = 998244353;
  16. int n,m,k;
  17. const int N = 2e5+7;
  18. int a[N]; string s;
  19.  
  20.  
  21.    void solve() {
  22.  
  23.      
  24.  
  25.  
  26.  
  27.     }
  28.  
  29.  
  30. int32_t main(){
  31.    ios_base::sync_with_stdio(0);
  32.    cin.tie(0);cout.tie(0);
  33.    cout << setprecision(12) << fixed;
  34.    #ifndef ONLINE_JUDGE
  35.    freopen("input.txt", "r", stdin);
  36.    freopen("output.txt", "w", stdout);
  37.    #endif
  38.    int tt=1;
  39.    cin>>tt;
  40.  
  41.  
  42.  
  43.    while(tt--){
  44.     solve();
  45.     }
  46.    return 0;
  47.    }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement