File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed
Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff 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
2427typedef priority_queue <int > pq;
2528
2629int main ()
2730{
28- fastio;
29- }
31+ fastio;
32+ int tc;
33+ std::cin >> tc;
34+
35+ while (tc--){
36+ }
37+
38+ return 0 ;
39+ }
You can’t perform that action at this time.
0 commit comments