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
#include <bits/stdc++.h>
using namespace std;

const int R = 1e6 + 1;

typedef long long lld;

lld t[R], a[R];

int main(){
	int n, m;
	scanf("%d%d",&n,&m);
	for(int i=0;i<n;i++){
		scanf("%lld",&t[i]);
	}
	lld l = 0;
	for(int i=0;i<m;i++){
		lld d, b;
		scanf("%lld%lld",&d,&b);
		lld w = 0;
		for(int j=0;j<n;j++){
			a[j] += (d - l) * t[j];
			w += a[j] - min(a[j], b);
			a[j] = min(a[j], b);
		}
		l = d;
		printf("%lld\n",w);
	}
	return 0;
}