Skip to content

Commit d973f51

Browse files
committed
Update Template
1 parent e10c2fb commit d973f51

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

ccTemplate.cpp

+14-4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ typedef long long ll;
55

66
#define M 1000000007
77
#define PI 3.1415926
8+
#define vi vector<int>
89

910
#define pb push_back
1011
#define mp make_pair
@@ -16,14 +17,23 @@ typedef long long ll;
1617

1718
#define fastio ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
1819

19-
#define forf(x,n) for(int x = 0; x < n; ++x)
20-
#define forb(x,n) for(int x = n-1; x >= 0; --x)
20+
#define forf(x,n) for(int i = 0; i < n; ++x)
21+
#define forb(x,n) for(int i = n-1; i >= 0; --x)
22+
#define forv(v,n) for(int i = v; i < n; ++i)
23+
2124

2225
#define itr(c,it) for( auto it = c.begin(); it != c.end(); ++it)
2326

2427
typedef priority_queue <int> pq;
2528

2629
int main()
2730
{
28-
fastio;
29-
}
31+
fastio;
32+
int tc;
33+
std::cin >> tc;
34+
35+
while(tc--){
36+
}
37+
38+
return 0;
39+
}

0 commit comments

Comments
 (0)