#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; pair p[100010], x[100010]; long long ans[100010] = {}; priority_queue, vector>, greater>> que; int main() { int n, q; long long l = 0, r = 0; cin >> n >> q; for (int i = 0; i < n; i++) { long long x, w; cin >> x >> w; r += w; p[i] = { x,w }; que.push({ x,w }); } sort(p, p + n); for (int i = 0; i < q; i++) { long long X; cin >> X; x[i] = { X,i }; } sort(x, x + q); for (int i = 0; i < n; i++) { ans[x[0].second] += abs(p[i].first - x[0].first) * p[i].second; } while (!que.empty()) { if (que.top().first > x[0].first)break; l += que.top().second, r -= que.top().second; que.pop(); } for (int i = 1; i < q; i++) { ans[x[i].second] = ans[x[i - 1].second]; long long co = 0; while (!que.empty()) { if (que.top().first > x[i].first)break; ans[x[i].second] -= abs(x[i - 1].first - que.top().first) * que.top().second; ans[x[i].second] += abs(x[i].first - que.top().first) * que.top().second; co += que.top().second, r -= que.top().second; que.pop(); } ans[x[i].second] += (x[i].first - x[i - 1].first) * (l - r); l += co; } for (int i = 0; i < q; i++) { cout << ans[i] << endl; } }