File tree 1 file changed +14
-4
lines changed
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;
5
5
6
6
#define M 1000000007
7
7
#define PI 3.1415926
8
+ #define vi vector<int >
8
9
9
10
#define pb push_back
10
11
#define mp make_pair
@@ -16,14 +17,23 @@ typedef long long ll;
16
17
17
18
#define fastio ios_base::sync_with_stdio (false );cin.tie(NULL );cout.tie(NULL )
18
19
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
+
21
24
22
25
#define itr (c,it ) for ( auto it = c.begin(); it != c.end(); ++it)
23
26
24
27
typedef priority_queue <int > pq;
25
28
26
29
int main ()
27
30
{
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