- Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathmain.cpp
More file actions
Latest commit
21 lines (17 loc) · 418 Bytes
/
Copy pathmain.cpp
File metadata and controls
21 lines (17 loc) · 418 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include<bits/stdc++.h>
usingnamespacestd;
using ll = longlong;
#defineii pair<int, int>
#definef first
#defines second
#definepb push_back
#definemp make_pair
#defineall(x) x.begin(), x.end()
#definesz(x) (int)x.size()
#defineF0R(i, n) for (int i = 0; i < n; i++)
#defineFOR(i, a, b) for (int i = a; i < b; i++)
#defineinf1000000010
intmain() {
cin.tie(0)->sync_with_stdio(0);
return0;
}