#include #include using namespace std; using namespace atcoder; #define ll long long #define rep(i,n) for (int i = 0; i < (n); i++) #define coutf(f) cout << fixed << setprecision(f) #define all(v) (v).begin(), (v).end() #define rall(v) (v).rbegin(), (v).rend() int main() { int n, d; cin >> n >> d; vector a(n), b(n); rep(i, n) cin >> a[i]; rep(i, n) b[i] = a[i]; sort(all(b)); rep(i, n) { auto iter = upper_bound(all(b), a[i] - d); cout << iter - b.begin() << endl; } return 0; }