結果
問題 |
No.1170 Never Want to Walk
|
ユーザー |
![]() |
提出日時 | 2020-08-14 22:17:28 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,130 bytes |
コンパイル時間 | 3,257 ms |
コンパイル使用メモリ | 206,028 KB |
最終ジャッジ日時 | 2025-01-13 00:05:22 |
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 30 TLE * 7 |
ソースコード
#define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; class Dis{ public: vector<ll> rank,p; Dis(int s){ rank.resize(s,0); p.resize(s,0); rep(i,s) 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(findSet(x),findSet(y)); } void link(int x,int y){ if(rank[x]>rank[y]) p[y]=x; else{ p[x]=y; if(rank[x]==rank[y]) rank[y]++; } } int findSet(int x){ if(x != p[x]) p[x]=findSet(p[x]); return p[x]; } }; int main(){ ll n,a,b; cin>>n>>a>>b; Dis ds=Dis(n); vector<ll> A(n); rep(i,n) cin>>A[i]; rep(i,n){ auto it1=lower_bound(ALL(A),A[i]+a); auto it2=upper_bound(ALL(A),A[i]+b); if(it1<it2){ for(auto j=it1;j<it2;j++){ ds.unite(i,j-A.begin()); } } } map<int,int> m; rep(i,n){ m[ds.findSet(i)]++; } rep(i,n){ cout<<m[ds.findSet(i)]<<endl; } return 0; }