結果

問題 No.1170 Never Want to Walk
ユーザー 👑 NachiaNachia
提出日時 2020-10-07 16:20:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 1,011 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 171,484 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-07-20 03:26:29
合計ジャッジ時間 9,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 360 ms
7,040 KB
testcase_28 AC 352 ms
6,912 KB
testcase_29 AC 370 ms
7,040 KB
testcase_30 AC 362 ms
7,040 KB
testcase_31 AC 353 ms
6,912 KB
testcase_32 AC 355 ms
7,040 KB
testcase_33 AC 357 ms
7,040 KB
testcase_34 AC 365 ms
7,040 KB
testcase_35 AC 359 ms
7,296 KB
testcase_36 AC 350 ms
7,040 KB
testcase_37 AC 360 ms
7,040 KB
testcase_38 AC 372 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL=long long;
using ULL=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

struct dsu{
 vector<int> V;
 vector<int> Z;
 void init(int n){
  V.resize(n);
  Z.resize(n);
  rep(i,n) V[i]=i;
  rep(i,n) Z[i]=1;
 }
 int root(int a){
  if(V[a]==a) return a;
  return V[a] = root(V[a]);
 }
 void unite(int a,int b){
  a=root(a); b=root(b);
  if(a==b) return;
  V[a]=b; Z[b]+=Z[a];
 }
 int size(int a){ return Z[root(a)]; }
} G;

int N;
LL A,B;
LL X[200001];
int to[200000];

int lower_bound_X(LL x){
 int l,r; l=0; r=N+1;
 while(l+1<r){
  int m=(l+r)/2;
  if(X[m-1]<x) l=m; else r=m;
 }
 return l;
}

int main(){
 cin>>N>>A>>B;
 rep(i,N) cin>>X[i];
 rep(i,N) to[i]=i;

 G.init(N);
 rep(i,N){
  int l=lower_bound_X(X[i]+A);
  int r=lower_bound_X(X[i]+B+1);
  if(l==N) continue;
  if(l!=r){
   to[l]=r-1;
   G.unite(i,l);
  }
 }

 rep(i,N-1) to[i+1]=max(to[i+1],to[i]);
 rep(i,N-1) if(to[i]!=i) G.unite(i,i+1);

 rep(i,N) cout<<G.size(i)<<endl;

 return 0;
}
0