-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2011.cpp
More file actions
50 lines (41 loc) · 684 Bytes
/
2011.cpp
File metadata and controls
50 lines (41 loc) · 684 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
#include <string>
#include <stdio.h>
#include <math.h>
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <stack>
#include <climits>
#include <set>
#define p(a, b) make_pair(a, b)
#define SWAP(a, b, type) do { \
type temp; \
temp = a; \
a = b; \
b = temp; \
} while (0)
#define INF 1000000000
#define endl '\n'
#define ll long long
#define mod 1000000
using namespace std;
int sum = 0;
bool flag=false;
string s;
int dp[6000];
void input() {
cin>>s;
}
void init() {
}
void solution() {
}
int main()
{
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
input();
solution();
return 0;
}