結果

問題 No.1170 Never Want to Walk
ユーザー suzuken_wsuzuken_w
提出日時 2020-08-29 02:30:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 1,979 bytes
コンパイル時間 2,866 ms
コンパイル使用メモリ 226,304 KB
実行使用メモリ 11,788 KB
最終ジャッジ日時 2024-11-14 04:56:04
合計ジャッジ時間 7,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 3 ms
6,816 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 74 ms
11,704 KB
testcase_28 AC 73 ms
10,508 KB
testcase_29 AC 77 ms
10,920 KB
testcase_30 AC 75 ms
10,856 KB
testcase_31 AC 74 ms
11,164 KB
testcase_32 AC 67 ms
11,068 KB
testcase_33 AC 71 ms
11,788 KB
testcase_34 AC 68 ms
11,000 KB
testcase_35 AC 68 ms
10,980 KB
testcase_36 AC 66 ms
10,524 KB
testcase_37 AC 67 ms
11,048 KB
testcase_38 AC 70 ms
11,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include <bits/stdc++.h> 
using namespace std;
using ll=long long;
using P=pair<ll,ll>;
template<class T> using V=vector<T>; 
#define fi first
#define se second
#define all(v) (v).begin(),(v).end()
const ll inf=(1e18);
//const ll mod=998244353;
const ll mod=1000000007;
ll GCD(ll a,ll b) {return b ? GCD(b,a%b):a;}
ll LCM(ll c,ll d){return c/GCD(c,d)*d;}
struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<<fixed<<setprecision(15);}} __init;
template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
class UF{
public:
	vector<int> par,num;
	int find(int v){
		return (par[v]==v)? v: (par[v]=find(par[v]));
	}
	explicit UF(int N):par(N),num(N,1){
		iota(all(par),0);
	}
	void unite(int u,int v){
		u=find(u),v=find(v);
		if(u==v)return;
		if(num[u]<num[v])swap(u,v);
		num[u]+=num[v];
		par[v]=u;
	}
	bool same(int u,int v){
		return find(u)==find(v);
	}
	bool ispar(int v){
		return v=find(v);
	}
	int size(int v){
		return num[find(v)];
	}
};
int main(){
    int n,a,b;
    cin>>n>>a>>b;
    UF uf(n);
    V<ll> d(n);
    V<P> seg;
    for(int i=0;i<n;i++)cin>>d[i];
    for(int i=0;i<n;i++){
        int r=upper_bound(all(d),d[i]+b)-d.begin();
        int l=lower_bound(all(d),d[i]+a)-d.begin();
        if(r-l>0){
            uf.unite(i,l);
            seg.emplace_back(l,r-1);
        }
    }
    sort(all(seg));
    V<P> res;
    ll L=-1,R=-1;
    for(int i=0;i<seg.size();i++){
        if(R<seg[i].fi){
            if(R!=-1){
                res.emplace_back(L,R);
            }
            L=seg[i].fi;
            R=seg[i].se;
        }
        else chmax(R,seg[i].se);
    }
    if(R!=-1)res.emplace_back(L,R);
    for(int i=0;i<res.size();i++){
        for(int j=res[i].fi;j<res[i].se;j++){
               uf.unite(j,j+1);
        }
    }
    for(int i=0;i<n;i++){
        cout<<uf.size(i)<<"\n";
    }

}
0