-
Notifications
You must be signed in to change notification settings - Fork 21
/
2.2.2 - Subset Sums.cpp
60 lines (54 loc) · 1.13 KB
/
2.2.2 - Subset Sums.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
/*
ID: nathan.18
TASK: subset
LANG: C++
*/
#include <iostream>
#include <string>
#include <utility>
#include <sstream>
#include <algorithm>
#include <stack>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <bitset>
#include <cmath>
#include <cstring>
#include <iomanip>
#include <fstream>
#include <cassert>
using namespace std;
#define INF 1000000000
#define LL_INF 4500000000000000000
#define LSOne(S) (S & (-S))
#define EPS 1e-9
#define A first
#define B second
#define mp make_pair
#define PI acos(-1.0)
#define ll long long
typedef pair<int, int> ii;
typedef vector<int> vi;
typedef vector<ii> vii;
int main() {
freopen("subset.in", "r", stdin);
freopen("subset.out", "w", stdout);
int n; cin >> n;
int maxSum = n*(n+1)/2;
if (maxSum%2 != 0) {
cout << 0 << endl;
return 0;
}
long long dp[n+1][maxSum+1];
memset(dp, 0, sizeof dp);
dp[0][0] = 1;
for (int i = 1; i <= n; i++) {
for (int j = 0; j <= maxSum; j++) {
dp[i][j] = dp[i - 1][j] + (j - 1 >= 0 ? dp[i - 1][j - i] : 0);
}
}
cout << dp[n][maxSum/2]/2 << endl;
return 0;
}