forked from Code-Cube-NITP/Competitive-Programming
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTemplet.cpp
More file actions
Latest commit
executable file
·24 lines (22 loc) · 697 Bytes
/
Copy pathTemplet.cpp
File metadata and controls
executable file
·24 lines (22 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include<bits/stdc++.h>
#definefastioios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL)
#defineendl'\n'
#defineintlonglongint
usingnamespacestd;
#definepii pair <int, int>
#definemii map<int, int>
#definepb push_back
#definedeb(x) cout << #x << "" << x << endl
#definedeb2(x, y) cout << #x << "" << x << "" << #y << "" << y << endl
#defineLoop(s, e, itr) for (int itr = s; itr < e; itr++)
#defineloop(n) for(int i = 0; i < n; i++)
#definevin vector<int>
#definew(t) int tc; cin >> tc; for(int t = 1; t <= tc; t++)
#definevec vector
#definemod1000000007
#defineall(x) x.begin(), x.end()
int32_tmain(){
fastio;
w(t){
}
}