#include using namespace std; #define int ll #define ll long long #define I32_MAX 2147483647 #define I64_MAX 9223372036854775807LL #define I64_MAX2 1223372036854775807LL #define INF I64_MAX2 #define MOD 1000000007 // #define MOD 998244353 #define MEM_SIZE 100010 #define DEBUG_OUT true #define ALL(x) (x).begin(), (x).end() template void DEBUG(T e){if(DEBUG_OUT == false)return; std::cout << e <<" ";} template void DEBUG(const std::vector& v){if(DEBUG_OUT == false)return;for(const auto& e : v){std::cout<< e << " "; } std::cout << std::endl;} template void DEBUG(const std::vector >& vv){if(DEBUG_OUT == false)return;for(const auto& v : vv){ DEBUG(v); } } template void DEBUG(T d, Ts... e){if(DEBUG_OUT == false)return;DEBUG(d);DEBUG(e...);} template void corner(bool flg, T hoge) {if (flg) {cout << hoge << endl; abort();}} template< typename T1, typename T2 > inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); } template< typename T1, typename T2 > inline bool chmin(T1 &a, T2 b) { return a > b && (a = b, true); } class DisjointSet{ public: vector rank,p; DisjointSet(){} DisjointSet(int size) { rank.resize(size,0); p.resize(size,0); for (int i = 0; i < size; i++) { makeSet(i); } } void makeSet(int x) { p[x] = x; rank[x] = 0; } bool same(int x, int y) { return findSet(x) == findSet(y); } void unite(int x, int y) { link(x,y); } void link(int x, int y) { if(rank[x] > rank[y]) { p[y] = p[x]; } else { p[x] = p[y]; } if(rank[x] == rank[y]) { rank[y]++; } } int findSet(int x) { if(x != p[x]) { p[x] = findSet(p[x]); } return p[x]; } }; void solve(void) { int n,a,b; cin>>n>>a>>b; vector vec (n,0); for (int i = 0; i < n; i++) { cin>>vec[i]; } DisjointSet uf(n); for (int i = 0; i < n ;i++) { // l <= x < rの半開区間 int l = distance(vec.begin(),lower_bound(ALL(vec),vec[i] + a)); int r = distance(vec.begin(),upper_bound(ALL(vec),vec[i] + b)); for (int j = l; j < r; j++) { uf.unite(i,j); } } for (int i = 0; i < n; i++) { uf.findSet(i); } map mp; for (int i = 0; i < n; i++) { mp[uf.p[i]]++; } for (int i = 0; i < n; i++) { cout<