-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_sol.cpp
More file actions
47 lines (32 loc) · 1 KB
/
_sol.cpp
File metadata and controls
47 lines (32 loc) · 1 KB
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
#include<bits/stdc++.h>
using namespace std;
#define DEBUG(x) cout << #x << " = " << x << endl;
#define fi first
#define se second
#define pb push_back
#define mp make_pair
#define all(x) (x).begin() , (x).end()
#define rall(x) (x).rbegin() , (x).rend()
typedef long long LL;
int main() {
#ifndef ONLINE_JUDGE
freopen("in.txt", "r", stdin);
#endif
// Write code here...
}
// N decimal places
// cout << fixed << setprecision(6);
// cout << (1.0 * 2 / 3) << endl;
// vector <int> dp(MAXN + 1, -1);
// vector<vector<LL>> nCr(N, vector<LL> (M, -1));
// struct ListNode {
// int val;
// ListNode *next;
// ListNode() : val(0), next(nullptr) {}
// ListNode(int x) : val(x), next(nullptr) {}
// ListNode(int x, ListNode *next) : val(x), next(next) {}
// };
// SegmentTree* segmentTree = new SegmentTree(vec, N);
// segmentTree -> build(vec, 1, 0, N - 1);
// priority_queue<int> max_q; max_q.pop(); max_q.top(); max_q.empty();
// priority_queue<int, vector<int>, greater<int>> min_q;