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
47
48
49
50
51
52
53
54
55
56
57
//BRUTE   O(mn)

#include <iostream>

using namespace std;

const int MAX_N = 2 * 100 * 1000 + 1000;

struct toster
{
	int czas;
	int ostatni;
	int suma;

	void set(int x)
	{
		int z = x - czas; //gdzie chce postawic;
		if (z > ostatni)
		{
			ostatni = x;
		}
		else
		{
			suma += ostatni - z;
			ostatni = ostatni + czas;
		}
	}
};

int k;
int p;
toster TOSTERY[MAX_N];
int KLIENT[MAX_N];

int main()
{
	ios_base::sync_with_stdio(false);

	cin >> k >> p;
	for (int i = 0; i < k; i++)
		cin >> KLIENT[i];

	for (int i = 0; i < p; i++)
	{
		TOSTERY[i].ostatni = 0;
		cin >> TOSTERY[i].czas;
	}

	for (int i = 0; i < k; i++)
		for (int j = 0; j < p; j++)
			TOSTERY[j].set(KLIENT[i]);

	for (int i = 0; i < p; i++)
		cout << TOSTERY[i].suma << '\n';

	return 0;
}