Kay and Eternity

Snow Queen told Kay to form a word “eternity” using pieces of ice. Kay is eager to deal with the task, because he will then become free, and Snow Queen will give him all the world and a pair of skates.

Behind the palace of the Snow Queen there is an infinite field consisting of cells. There are n pieces of ice spread over the field, each piece occupying exactly one cell and no two pieces occupying the same cell. To estimate the difficulty of the task Kay looks at some squares of size k × k cells, with corners located at the corners of the cells and sides parallel to coordinate axis and counts the number of pieces of the ice inside them.

This method gives an estimation of the difficulty of some part of the field. However, Kay also wants to estimate the total difficulty, so he came up with the following criteria: for each x (1 ≤ x ≤ n) he wants to count the number of squares of size k × k, such that there are exactly x pieces of the ice inside.

Please, help Kay estimate the difficulty of the task given by the Snow Queen.

Input

The first line of the input contains two integers n and k (1 ≤ n ≤ 100 000, 1 ≤ k ≤ 300) — the number of pieces of the ice and the value k, respectively. Each of the next n lines contains two integers x i and y i ( - 109 ≤ x i, y i ≤ 109) — coordinates of the cell containing i-th piece of the ice. It’s guaranteed, that no two pieces of the ice occupy the same cell.

Output

Print n integers: the number of squares of size k × k containing exactly 1, 2, …, n pieces of the ice.

Example

input

5 3
4 5
4 6
5 5
5 6
7 7

output

10 8 1 4 0 

Solution:

#include<bits/stdc++.h>
#define mp make_pair
#define pb push_back
#define F first
#define S second
#define SS stringstream
#define sqr(x) ((x)*(x))
#define m0(x) memset(x,0,sizeof(x))
#define m1(x) memset(x,63,sizeof(x))
#define CC(x) cout << (x) << endl
#define pw(x) (1ll<<(x))
#define buli(x) __builtin_popcountll(x)
#define forn(i, n) for(int i = 0 ; (i) < (n) ; ++i)
#define M 1000000007
#define N 211111

#define TASK "1"

using namespace std;

multiset<pair<int, int> > se;

int inf = 2e9 + 5;
long long ans[N];

int main(){
#ifdef home
freopen(TASK".in","r",stdin);
freopen(TASK".out","w",stdout);
#endif
ios::sync_with_stdio(false);
int n, k;
cin >> n >> k;
vector<pair<int, pair<int, int> > > ev;

for (int i = 0; i < n; i++) {
		int x, y;
		cin >> x >> y;

ev.pb(mp(x - k + 1, mp(y - k + 1, 1)));
ev.pb(mp(x - k + 1, mp(y + 1, -1)));
ev.pb(mp(x + 1, mp(y - k + 1, -1)));
ev.pb(mp(x + 1, mp(y + 1, 1)));
}
sort(ev.begin(), ev.end());

for (int i = 0; i < ev.size(); i++) {
		pair<int, int> t = ev[i].S;
pair<int, int> ne = mp(t.F, -t.S);

auto it = se.find(ne);
if (it != se.end()) {
se.erase(it);
} else se.insert(t);

int mul = 0;
if (i + 1< ev.size()) mul = ev[i + 1].F - ev[i].F;
		if (mul > 0) {
int bal = 0;

int prev = -inf;
for (auto it = se.begin(); it != se.end(); ++it) {
if (prev > -inf) ans[bal] += ((it -> F) - prev) * 1ll * mul;
bal += (it -> S);
prev = (it -> F);
}
}
}
for (int i = 1; i <= n; i++) cout << ans[i] << " ";

	return 0;
}