結果
問題 | No.1170 Never Want to Walk |
ユーザー | umezo |
提出日時 | 2020-08-14 22:17:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,130 bytes |
コンパイル時間 | 2,267 ms |
コンパイル使用メモリ | 215,964 KB |
実行使用メモリ | 13,768 KB |
最終ジャッジ日時 | 2024-10-10 15:36:44 |
合計ジャッジ時間 | 8,948 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 4 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 4 ms
5,248 KB |
testcase_16 | AC | 4 ms
5,248 KB |
testcase_17 | AC | 4 ms
5,248 KB |
testcase_18 | AC | 4 ms
5,248 KB |
testcase_19 | AC | 3 ms
5,248 KB |
testcase_20 | AC | 4 ms
5,248 KB |
testcase_21 | AC | 4 ms
5,248 KB |
testcase_22 | AC | 6 ms
5,248 KB |
testcase_23 | AC | 5 ms
5,248 KB |
testcase_24 | AC | 6 ms
5,248 KB |
testcase_25 | AC | 6 ms
5,248 KB |
testcase_26 | AC | 5 ms
5,248 KB |
testcase_27 | AC | 371 ms
7,808 KB |
testcase_28 | AC | 362 ms
7,680 KB |
testcase_29 | AC | 375 ms
7,936 KB |
testcase_30 | AC | 375 ms
7,808 KB |
testcase_31 | AC | 362 ms
7,808 KB |
testcase_32 | TLE | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
#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; }