#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; using P = pair; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } struct CountUnionFind{ int sz; // vertex number vector par; vector rank; vector cnt; CountUnionFind(int n) : sz(n) { par.resize(sz); rank.assign(sz, 0); cnt.assign(sz, 1); for(int i = 0; i < sz; ++i){ par[i] = i; } } int find(int x){ if(par[x] == x) return x; else return par[x] = find(par[x]); } bool same(int x, int y){ return find(x) == find(y); } void unite(int x, int y){ x = find(x), y = find(y); if(x == y) return; if(rank[x] < rank[y]){ par[x] = y; cnt[y] += cnt[x]; } else{ par[y] = x; cnt[x] += cnt[y]; if(rank[x] == rank[y]) ++rank[x]; } } int get_cnt(int x){ return cnt[find(x)]; } }; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N, A, B; cin >> N >> A >> B; vector x(N); for(int i = 0; i < N; ++i) cin >> x[i]; CountUnionFind uf(N); int l = 0, r = 0; for(int i = 0; i < N; ++i){ while(l < N && x[l] < x[i] + A) ++l; if(l < r) uf.unite(i, i - 1); chmax(r, l); while(r < N && x[r] <= x[i] + B) uf.unite(i, r++); } for(int i = 0; i < N; ++i) cout << uf.get_cnt(uf.find(i)) << '\n'; }