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
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#undef _GLIBCXX_DEBUG
#include<bits/stdc++.h>
#define rep(i,k,n) for(ll i= (ll) k;i< (ll) n;i++)
#define all(v) (v).begin(), (v).end()
#define SZ(v) (int)((v).size())
#define pb push_back
#define ft first
#define sd second
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
const long long INF = 4e18L + 1;
const int IINF = 2e9 + 1;

using namespace std;

template<class TH> void _dbg(const char *sdbg, TH h){ cerr<<sdbg<<'='<<h<<endl; }
template<class TH, class... TA> void _dbg(const char *sdbg, TH h, TA... a) {
  while(*sdbg!=',')cerr<<*sdbg++;
  cerr<<'='<<h<<','; _dbg(sdbg+1, a...);
}

#ifdef LOCAL
#define DBG(...) _dbg(#__VA_ARGS__, __VA_ARGS__)
#else
#define DBG(...)
#define cerr if(0)cout
#endif

ll rozmiar[200005];
ll starty[200005];
set < int > S;
	
pair < ll, ll > kiedy_sie_polacza(int i, int j)//czas, kara
{
	assert(i < j);
	ll dist = starty[j] - starty[i];
	ll ile_ludzi = rozmiar[i];
	ll ile_tur = (dist + ile_ludzi-1)/ile_ludzi;
	ll dodatkowa_kara = ile_tur * ile_ludzi - dist;
	dodatkowa_kara *= rozmiar[j];
	//DBG(i, j, dodatkowa_kara);
	return {ile_tur, dodatkowa_kara};	
}

typedef pair<ll, ll> PLL;
priority_queue < PLL, vector < PLL >, greater< PLL > > PQ;//czas, kto
	

ll kara = 0, koszt_poj = 0, d = 0;

ll npo2(ll n)
{
	return n = n *(n-1)/2;
}

void lacz(int i)
{
	int ind1 = i;
	int ind2 = *(S.upper_bound(i));
	//DBG(ind1, ind2);
	S.erase(S.find(ind2));
	ll k = kiedy_sie_polacza(ind1, ind2).sd;
	kara += k;
	
	koszt_poj -= npo2(rozmiar[ind1]);
	koszt_poj -= npo2(rozmiar[ind2]);
	rozmiar[ind1] += rozmiar[ind2];
	koszt_poj += npo2(rozmiar[ind1]);
	
	auto it = S.upper_bound(ind1);
	if (it != S.end())
	{
		auto p = kiedy_sie_polacza(ind1, *it);
		//DBG("C", p.ft, p.sd, ind1);
		PQ.push({p.ft, ind1});
	}
}	

bool moge_polaczyc_z_kolejnym(int i, ll nowe_d)
{	
	auto it = S.find(i);
	if (it == S.end()) return false;
	auto nit = it;
	nit++;
	if (nit == S.end()) return false;
	//DBG(*it, *nit);
	auto q = kiedy_sie_polacza(*it, *nit);
	return q.ft == nowe_d;
	
}
ll odpd[1000001];

int main()
{
#ifndef LOCAL
    ios_base::sync_with_stdio(0);
    cin.tie(0);
#endif
	for(int i=0; i<=200000; i++) rozmiar[i]++;
	ll n, m;
	cin>>n>>m;
	for(int i=1; i<=n; i++)
		cin>>starty[i];
	for(int i=0; i<=n; i++) S.insert(i);
	for(int i=0; i<n; i++)
	{
		auto p = kiedy_sie_polacza(i, i+1);
		p.sd = i;
		PQ.push(p);
		//DBG(p.ft, p.sd);
	}
	
	while(!PQ.empty())
	{
		auto p = PQ.top();//czas, kto
		if (p.ft >= 1000000) break;
		PQ.pop();
	//	DBG("A", p.ft, p.sd);x
		if (!moge_polaczyc_z_kolejnym(p.sd, p.ft))
			continue;
	//	DBG("B", p.ft, p.sd);
		
		
		ll nowe_d = p.ft;
		
		for(ll i=d; i<nowe_d; i++)
			odpd[i] = kara + koszt_poj * (i-d);
		assert(nowe_d > d || d == 0);
		kara += koszt_poj * (nowe_d - d);
		d = nowe_d;
		lacz(p.sd);
		while(!PQ.empty() && PQ.top().ft == d)
		{
			p = PQ.top();
			PQ.pop();
			if (!moge_polaczyc_z_kolejnym(p.sd, p.ft))
				continue;
			lacz(p.sd);
		}
		//DBG(d, kara, koszt_poj);
		
	}
	for(ll i=d; i<=1000000; i++)
		odpd[i] = kara + koszt_poj * (i-d);
		

	while(m--)
	{
		int x;
		cin>>x;
	//	DBG(x);
		cout<<odpd[x]<<"\n";
	}
	//for(int i=1; i<6; i++)
	//	DBG(i, odpd[i]);
	
	


    return 0;
}