-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtop.cpp
71 lines (63 loc) · 1.91 KB
/
top.cpp
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// IO:
#include <iostream>
#include <stdio.h>
// Data structures:
#include <set>
#include <map>
#include <vector>
#include <queue>
#include <stack>
#include <bitset>
// Functions:
#include <algorithm>
#include <string>
#include <sstream>
#include <cstring>
#include <limits>
#define _USE_MATH_DEFINES
#include <cmath>
#include <ctime>
using namespace std;
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#define MAX(a,b) ((b) < (a) ? (a) : (b))
#define ABS(a) ((a) < 0 ? -(a) : (a))
#define FORCAS int cases; cin >> cases; for(int cas = 0; cas < cases; ++cas)
#define FORI(N) for(int i = 0; i < N; ++i)
#define FORJ(N) for(int j = 0; j < N; ++j)
#define FORK(N) for(int k = 0; k < N; ++k)
#define FORX(N) for(int x = 0; x < N; ++x)
#define FORY(N) for(int y = 0; y < N; ++y)
#define FORUI(N) for(unsigned int i = 0; i < N; ++i)
#define FORUJ(N) for(unsigned int j = 0; j < N; ++j)
#define FORUK(N) for(unsigned int k = 0; k < N; ++k)
#define FORUX(N) for(unsigned int x = 0; x < N; ++x)
#define FORUY(N) for(unsigned int y = 0; y < N; ++y)
#define FORIT(T, N) for(T::const_iterator it = N.begin(); it != N.end(); ++it)
#define FORIT2(T, N) for(T::const_iterator it2 = N.begin(); it2 != N.end(); ++it2)
#define GI(N) int N; cin >> N;
#define GL(N) long N; cin >> N;
#define GD(N) double N; cin >> N;
#define GS(N) string N; cin >> N;
typedef unsigned long long ULL;
typedef long long LL;
typedef long double LD;
typedef pair<int,int> PI;
typedef pair<long,long> PL;
typedef pair<LL,LL> PLL;
typedef pair<ULL,ULL> PULL;
typedef pair<double,double> PD;
typedef pair<string,int> PSI;
typedef pair<string,string> PS;
typedef pair<int,string> PIS;
typedef pair<ULL,string> PULLS;
typedef pair<int,char> PIC;
typedef pair<char,char> PC;
typedef pair<char,int> PCI;
typedef PI Point;
typedef PD Point2D;
#define XX first
#define YY second
#define P1 first
#define P2 second
void die() {int *a = NULL; a[3] = 2;}
void dieSlowly() {while(true)cerr << "NOO!";}