-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDEC.txt
executable file
·51 lines (42 loc) · 1.01 KB
/
DEC.txt
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
#include <algorithm>
#include <bitset>
#include <cmath>
#include <ctime>
#include <cctype>
#include <cstdio>
#include <cassert>
#include <cstring>
#include <cstdlib>
#include <deque>
#include <functional>
#include <iomanip> // <<setprecision(0)<<setiosflags(ios::fixed)
#include <iterator>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <set>
#include <stack>
#include <string>
#include <sstream>
#include <queue>
#include <utility>
#include <vector>
using namespace std;
#define INF (1<<30) // 2^31 = 2147483648
#define ALL(c) (c).begin(),(c).end()
#define FOR(i,a,b) for(int i=a;i<=b;i++)
#define FORR(i,a,b) for(int i=a;i>=b;i--)
#define REP(i,b) FOR(i,0,b-1)
#define V(x) vector<x>
typedef V( string ) VS;
typedef V( int ) VI;
typedef V( II ) VII;
typedef V( VI ) VVI;
typedef long long LL;
typedef pair<int,int> II;
int main()
{
return 0;
}
// ReMoVe stdafx.h