-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathB.cpp
More file actions
56 lines (38 loc) · 874 Bytes
/
Copy pathB.cpp
File metadata and controls
56 lines (38 loc) · 874 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#pragma GCC optimize ("O3")
#include <bits/stdc++.h>
using namespace std;
void debug_out() { cerr << endl; }
#ifdef __APPLE__
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]: " << __VA_ARGS__, debug_out()
#else
#define debug(...) 42
#endif
#define sz(x) (int)(x).size()
#define mp make_pair
#define pb push_back
#define f first
#define s second
#define lb lower_bound
#define ub upper_bound
#define all(x) x.begin(), x.end()
#define ins insert
const int maxn = 2e6 + 10;
const int md = 1e9 + 7;
int T;
string str;
int x, y, n, m;
void task() {
for(int i=1;i<=n;++i){
}
for (int i = 0; i < n;++i) {
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
T = 1;
while (T--){
task();
//cout <<"1" << endl;
}
return 0;
}