-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1105.cpp
32 lines (32 loc) · 824 Bytes
/
1105.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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/1105
#include <cstdio>
int main() {
int a, b, i;
while (1) {
scanf("%d %d", &a, &b);
if (a == 0 && b == 0) break;
int resposta = 1;
int vetor[a];
for (i = 0; i < a; i++) {
scanf("%d", &vetor[i]);
}
for (i = 0; i < b; i++) {
int banco1, banco2, debito;
scanf("%d %d %d", &banco1, &banco2, &debito);
vetor[banco1 - 1] -= debito;
vetor[banco2 - 1] += debito;
}
for (i = 0; i < a; i++) {
if (vetor[i] < 0) {
resposta = 0;
break;
}
}
if (resposta)
printf("S\n");
else
printf("N\n");
}
return 0;
}