forked from 13toast/moban
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHead.cpp
More file actions
54 lines (44 loc) · 1001 Bytes
/
Copy pathHead.cpp
File metadata and controls
54 lines (44 loc) · 1001 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
#include <bits/stdc++.h>
using namespace std;
#define RUSH ios_base::sync_with_stdio(0)
#define rep(i,a,b) for (int i=a;i<=b;++i)
#define per(i,a,b) for (int i=a;i>=b;--i)
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define mst(x,a) memset(x,a,sizeof(x))
typedef pair<int,int> pii;
typedef long long ll;
typedef double db;
const ll INF = 0x7fffffff;
const ll mod = 1e9+7;
const int MAXN = 1e5+5;
int MAX(int a,int b) {return a>b?a:b;}
int MIN(int a,int b) {return a<b?a:b;}
int main() {
RUSH;
int t; cin>>t;
while (t--) {
}
return 0;
}
/*
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <algorithm>
#define rep(i,a,b) for (int i=a;i<=b;++i)
#define per(i,a,b) for (int i=a;i>=b;--i)
#define mst(x,a) memset(x,a,sizeof(x))
using namespace std;
typedef long long ll;
typedef double db;
const int MAXN = 1e5+5;
int MAX(int a,int b) {return a>b?a:b;}
int MIN(int a,int b) {return a<b?a:b;}
int main() {
return 0;
}
*/