-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path2228.cpp
45 lines (45 loc) · 1.16 KB
/
2228.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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/2228
#include <cstdio>
#define MAXN 110
#define MAXL 11000
int tab[MAXN][MAXL], n, x, y, soma, valores[MAXN], teste = 1;
bool verdade;
void dp(int obj, int valor) {
if (verdade) return;
if (tab[obj][valor] != -1) return;
tab[obj][valor] = 1;
if (valor == soma) {
verdade = true;
return;
}
if (obj > n || valor > soma) return;
dp(obj + 1, valor + valores[obj]);
dp(obj + 1, valor);
}
int main() {
while (scanf("%d %d %d", &x, &y, &n)) {
if (n == 0 && x == 0 && y == 0) break;
printf("Teste %d\n", teste++);
verdade = false;
soma = (x + y);
for (int i = 1; i <= n; i++) {
scanf("%d", &valores[i]);
soma += valores[i];
}
if (soma % 2) {
printf("N\n\n");
continue;
}
for (int i = 1; i <= n + 3; i++)
for (int j = 0; j <= soma + 10; j++) tab[i][j] = -1;
soma /= 2;
soma -= x;
dp(1, 0);
if (verdade)
printf("S\n\n");
else
printf("N\n\n");
}
return 0;
}