結果

問題 No.1170 Never Want to Walk
ユーザー mikianaaamikianaaa
提出日時 2020-09-28 21:57:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,253 bytes
コンパイル時間 1,790 ms
コンパイル使用メモリ 169,780 KB
実行使用メモリ 8,768 KB
最終ジャッジ日時 2023-09-15 14:00:44
合計ジャッジ時間 8,849 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,768 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 3 ms
4,376 KB
testcase_13 AC 3 ms
4,380 KB
testcase_14 AC 3 ms
4,380 KB
testcase_15 AC 4 ms
4,380 KB
testcase_16 AC 4 ms
4,376 KB
testcase_17 AC 3 ms
4,376 KB
testcase_18 AC 3 ms
4,376 KB
testcase_19 AC 4 ms
4,380 KB
testcase_20 AC 4 ms
4,380 KB
testcase_21 AC 4 ms
4,376 KB
testcase_22 AC 18 ms
4,376 KB
testcase_23 AC 7 ms
4,376 KB
testcase_24 AC 18 ms
4,376 KB
testcase_25 AC 18 ms
4,380 KB
testcase_26 AC 13 ms
4,376 KB
testcase_27 AC 420 ms
6,660 KB
testcase_28 AC 421 ms
6,852 KB
testcase_29 AC 423 ms
6,964 KB
testcase_30 AC 434 ms
6,784 KB
testcase_31 AC 422 ms
6,748 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(), (x).end()
#define ll long long
#define ld long double
#define INF 1000000000000000000
typedef pair<ll, ll> pll;

class UnionFind {
  public:
    vector<ll> par; // 各元の親を表す配列
    vector<ll> siz; // 素集合のサイズを表す配列(1 で初期化)

    // Constructor
    UnionFind(ll sz_) : par(sz_), siz(sz_, 1LL) {
        for (ll i = 0; i < sz_; ++i)
            par[i] = i; // 初期では親は自分自身
    }
    void init(ll sz_) {
        par.resize(sz_);
        siz.assign(sz_, 1LL); // resize だとなぜか初期化されなかった
        for (ll i = 0; i < sz_; ++i)
            par[i] = i; // 初期では親は自分自身
    }

    // Member Function
    // Find
    ll root(ll x) { // 根の検索
        while (par[x] != x) {
            x = par[x] = par[par[x]]; // x の親の親を x の親とする
        }
        return x;
    }

    // Union(Unite, Merge)
    bool merge(ll x, ll y) {
        x = root(x);
        y = root(y);
        if (x == y)
            return false;
        // merge technique(データ構造をマージするテク.小を大にくっつける)
        if (siz[x] < siz[y])
            swap(x, y);
        siz[x] += siz[y];
        par[y] = x;
        return true;
    }

    bool issame(ll x, ll y) { // 連結判定
        return root(x) == root(y);
    }

    ll size(ll x) { // 素集合のサイズ
        return siz[root(x)];
    }
};

vector<int> x;

int right(int key) { return upper_bound(all(x), key) - x.begin() - 1; }

int left(int key) { return lower_bound(all(x), key) - x.begin() - 1; }

int main() {
    int N, A, B;
    cin >> N >> A >> B;
    x.resize(N);
    rep(i, N) { cin >> x[i]; }
    UnionFind tree(N);

    rep(i, N) {
        int ans = 0;
        for (int j = left(x[i] + A) + 1; j <= left(x[i] + B); j++) {
            if (j >= 0 && j < N)
                tree.merge(i, j);
        }

        for (int j = left(x[i] - B) + 1; j <= right(x[i] - A); j++) {
            if (j >= 0 && j < N)
                tree.merge(i, j);
        }
    }

    rep(i, N) { cout << tree.size(i) << endl; }
}
0