I tried to solve the problem of BANCO12 - Bank , but when submitting my C ++ code, the system returns " wrong answer". Here's my code: '
#include <iostream>
using namespace std;
int main(){
int nc, np, i, c, livre=0, cont=0;
cin>>nc>>np;
int caixa[nc], espera[np], chegada, demora;
for(i=0; i<nc; i++){
caixa[i]=0;
}
for(i=0; i<np; i++){
cin>>chegada>>demora;
espera[i] = caixa[livre]-chegada;
if(espera[i]>20){cont++;}
caixa[livre]+=demora;
if(nc>1){
for(c=0; c<nc; c++){
if(caixa[livre]>caixa[c]){
livre = c;
}
}
}
}
cout<<cont<<endl;
return 0;
}
I do not know where the error is, can you help me?