Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**************************
- * *
- * Author: Sukesh *
- * *
- ***************************/
- #include<bits/stdc++.h>
- #define FIO ios_base::sync_with_stdio(false), cin.tie(NULL), cout.tie(NULL)
- #define int long long int
- #define float long double
- #define re(arr, n, m) arr.resize(n, vll (m,0))
- #define inp1d(arr) for(auto &it: arr) cin>>it
- #define inp1ds(arr, sum) for(auto &it: arr){ cin>>it; sum+=it; }
- #define inp1dma(arr, m) for(auto &it: arr){ cin>>it; m = max(m,it); }
- #define inp1dmi(arr, m) for(auto &it: arr){ cin>>it; m = min(m,it); }
- #define inp2d(arr) for(auto &it1: arr) for(auto &it2: it1) cin>>it2
- #define o1d(arr) for(auto it: arr) cout<<it<<" ";
- #define o2d(arr) for(auto it1: arr) { for(auto it2: it1) cout<<it2<<" "; cout<<endl; }
- #define fo(i,s,e) for(int i=s;i<e;i++)
- #define fe(i,s,e) for(int i=s;i<=e;i++)
- #define fi(i,e,s) for(int i=e;i>=s;i--)
- #define vec(x) vector<x>
- #define mp(x,y) map<x, y>
- #define pr(x,y) pair<x,y>
- #define set(x) set<x>
- #define lb lower_bound
- #define ub upper_bound
- #define eb emplace_back
- #define all(arr) arr.begin(),arr.end()
- #define S(arr) arr.size()
- #define nl cout<<"\n"
- #define fr first
- #define se second
- #define contains(arr,x) arr.find(x) != arr.end()
- #define INF (int)1e18
- using namespace std;
- template<typename T,typename T1>T amax(T &a,T1 b){if(b>a)a=b;return a;}
- template<typename T,typename T1>T amin(T &a,T1 b){if(b<a)a=b;return a;}
- void solve(){
- FIO;
- return;
- }
- signed main(){
- FIO;
- #ifndef ONLINE_JUDGE
- freopen("in.txt","r",stdin);
- freopen("out.txt","w",stdout);
- #endif
- int t=1;
- cin>>t;
- while(t--)
- solve();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment