-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.cpp
More file actions
39 lines (31 loc) · 716 Bytes
/
template.cpp
File metadata and controls
39 lines (31 loc) · 716 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
#include <bits/stdc++.h>
#define pi pair<int, int>
#define vpi vector<pair<int, int>>
#define ll long long
#define PQ priority_queue
using namespace std;
bool smaller_second(pi a, pi b) {
if (a.second == b.second)
return a.first < b.first;
return a.second < b.second;
}
bool bigger_second(pi a, pi b) {
if (a.second == b.second)
return a.first > b.first;
return a.second > b.second;
}
// cmp
// going up: small < bigger (if small is small, then it comes faster)
// going down: small > bigger
int t = 0, N = 0, M = 0, K = 0;
int solve() {
}
int main(void) {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> t;
while (t--) {
solve();
}
return 0;
}