結果

問題 No.1170 Never Want to Walk
ユーザー zeronosu77108zeronosu77108
提出日時 2020-08-14 23:30:21
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,438 bytes
コンパイル時間 1,608 ms
コンパイル使用メモリ 131,404 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-10-10 16:50:04
合計ジャッジ時間 10,542 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1 ms
5,248 KB
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 AC 12 ms
5,248 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

struct unionfind {
    vector<long long> par,_size;
    unionfind(long n) : par(n+1), _size(n+1,1) {
        for(long long i=0; i<n; i++) par[i]=i;
    }
    void init(long long n) {
        par = vector<long long>(n);
        _size = vector<long long>(n);
        for(long long i=0; i<n; i++) par[i]=i;
    }
    long long root(long long x) {
        if (par[x] == x) return x;
        return par[x] = root(par[x]);
    }
    bool merge(long long x, long long y) {
        x = root(x);
        y = root(y);
        if (x==y) return false;
        if(_size[x]<_size[y]) swap(x,y);
        _size[x] += _size[y];
        par[y] = x;
        return true;
    }
    bool issame(long long x, long long y) { return root(x) == root(y); }
    long long size(long long x) { return _size[root(x)]; }
};

int main() {
    int n,a,b;
    cin >> n >> a >> b;
    vector x(n,0);
    for (int i=0; i<n; i++) cin >> x[i];
    for (int i=0; i<n; i++) cerr<<x[i]<<" ";cerr<<endl;
    unionfind uni(n);

    for (int i=0; i<n-1; i++) {
        auto l = lower_bound(x.begin(), x.end(), x[i]+a);
        if (l == x.end()) continue;
        auto u = upper_bound(x.begin(), x.end(), x[i]+b);
        uni.merge(i,l-x.begin());
        for (int j=l-x.begin(); j<u-x.begin()-1; j++) uni.merge(j,j+1);
    }

    for (int i=0; i<n; i++) {
        cout << uni.size(i) << endl;
    }
}
0