-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboilerplate.cpp
56 lines (53 loc) · 1.21 KB
/
boilerplate.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
#include <bits/stdc++.h>
#define MOD (1000000007)
#define EPS (1e-9)
#define INF (2117117117)
#define LLINF (2117117117117117117LL)
#define mp(a, b) make_pair(a, b)
#define pb(a) push_back(a)
#define loop(i,j,n) for(i = j;i < n;i++)
#define loopb(i,j,n) for(i = n-1;i >= j;i--)
#define fi first
#define sc second
using namespace std;
typedef unsigned int uint;
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
typedef pair<ll,ll> pairll;
typedef pair<int,char> pairic;
//FAST INTEGER INPUT
template <class T>
int readInt ( T &x ) {
bool minus = false;
T result = 0;
char ch;
ch = getchar();
while (true) {
if (ch == '-') break;
if (ch >= '0' && ch <= '9') break;
ch = getchar();
}
if (ch == '-') minus = true; else result = ch-'0';
while (true) {
ch = getchar();
if (ch < '0' || ch > '9') break;
result = result*10 + (ch - '0');
}
if (minus)
x = -result;
else
x = result;
return 0;
}
//GENERATE nCr TRIANGLE
ll comb[4001][4001];
int ncr(){
int i,j;
for(i = 0; i < 4001; i++)
comb[i][0] = comb[0][i] = comb[i][i] = 1;
for(i = 1; i < 4001; i++)
for(j = 1; j < i; j++)
comb[i][j] = (comb[i-1][j-1] + comb[i-1][j]) % MOD;
return 1;
}