-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path1105.cpp
46 lines (36 loc) · 974 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//Questão 1105 - Sub-prime - URI Online Judge
#include <iostream>
using namespace std;
int main(){
int b, n, i, d, c, v;
bool negativo;
while(true){
cin >> 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++)
cin >> reservas[i];
for(i = 0; i < n; i++){
cin >> 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)
cout << "N" << endl;
else
cout << "S" << endl;
}
return 0;
}