結果
問題 | No.1170 Never Want to Walk |
ユーザー | shiomusubi496 |
提出日時 | 2020-08-14 22:16:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,038 bytes |
コンパイル時間 | 1,714 ms |
コンパイル使用メモリ | 170,320 KB |
実行使用メモリ | 11,904 KB |
最終ジャッジ日時 | 2024-10-10 15:36:30 |
合計ジャッジ時間 | 7,830 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; struct UnionFind{ int par[10000000],rank[10000000]; int mx[10000000]; UnionFind(int N){ for(int i=0;i<N;i++){ par[i]=i; rank[i]=1; mx[i]=i; } } int find(int x){ if(par[x]==x)return x; int y=find(par[x]); par[x]=y; return y; } void unite(int x,int y){ x=find(x),y=find(y); if(rank[x]>=rank[y])par[y]=x,rank[x]+=rank[y],mx[x]=max(mx[x],mx[y]); else par[x]=y,rank[y]+=rank[x],mx[y]=max(mx[x],mx[y]); } bool same(int x,int y){ return find(x)==find(y); } }; signed main(){ int N,A,B; cin>>N>>A>>B; vector<int> V(N); for(int &i:V)cin>>i; UnionFind U(N); for(int i=0;i<N;i++){ int it=lower_bound(V.begin(),V.end(),V[i]+A)-V.begin(); it=max(it,U.mx[U.find(i)]); for(int j=it;j<N && V[i]+B>=V[j];j++)U.unite(i,j); } for(int i=0;i<N;i++)cout<<U.rank[U.find(i)]<<endl; }