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
#include <iostream>
int tempo [500000];
long long high[500000];

int main(){
int n;
int m;
std::cin>>n;
std::cin>>m;
for(int i=0;i<n;i++){
    std::cin>>tempo[i];
}
int day=1;
int teraz=0;
while(m>0){
    int kosz;
    int masa=0;
    std::cin>>day;
    while(day>teraz){
        for(int i=0; i<n;i++){
            high[i]=high[i]+tempo[i];
        }
        teraz++;
    }
    std::cin>>kosz;
    for(int i=0; i<n;i++){
        if(high[i]>kosz){
            masa=masa+(high[i]-kosz);
            high[i]=kosz;
        }
    }
    std::cout<<masa<<std::endl;
    m--;

}

}