#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 #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; 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); } bool unite(int x, int y){ x = find(x), y = find(y); if(x == y) return false; 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]; } return true; } 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); vector sections(n + 1); for(int i = 0; i < n; ++i){ int l = lower_bound(begin(x), end(x), x[i] + a) - begin(x); int r = upper_bound(begin(x), end(x), x[i] + b) - begin(x) - 1; if(r - l < 0) continue; uf.unite(i, l); sections[l] += 1; sections[r] -= 1; } for(int i = 0; i < n - 1; ++i){ sections[i + 1] += sections[i]; if(sections[i] > 0) uf.unite(i, i + 1); } for(int i = 0; i < n; ++i) cout << uf.get_cnt(uf.find(i)) << '\n'; return 0; }