-
Notifications
You must be signed in to change notification settings - Fork 4
/
1105.c
44 lines (36 loc) · 986 Bytes
/
1105.c
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
//Questão 1105 - Sub-prime - URI Online Judge
#include <stdio.h>
#include <stdbool.h>
int main(){
int b, n, i, d, c, v;
bool negativo;
while(true){
scanf("%d %d", &b, &n);
if(!b && !n)
break;
negativo = false;
//Vetor para armazenar as reservas monetárias
int reservas[b+1];
for(i = 1; i < b+1; i++)
scanf("%d", &reservas[i]);
for(i = 0; i < n; i++){
scanf("%d %d %d", &d, &c, &v);
//Retira o valor v do banco D
reservas[d] = reservas[d] - v;
//E deposita no banco C
reservas[c] = reservas[c] + v;
}
//Verifica se há algum banco negativado.
for(i = 1; i < b + 1; i++){
if(reservas[i] < 0){
negativo = true;
break;
}
}
if(negativo)
printf("N\n");
else
printf("S\n");
}
return 0;
}