結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー VvyLwVvyLw
提出日時 2024-06-20 18:29:43
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,574 bytes
コンパイル時間 4,189 ms
コンパイル使用メモリ 142,620 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-20 18:29:49
合計ジャッジ時間 6,102 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 6 ms
6,944 KB
testcase_14 AC 6 ms
6,944 KB
testcase_15 AC 6 ms
6,940 KB
testcase_16 AC 6 ms
6,940 KB
testcase_17 AC 6 ms
6,944 KB
testcase_18 AC 16 ms
6,940 KB
testcase_19 WA -
testcase_20 AC 26 ms
6,940 KB
testcase_21 AC 42 ms
6,944 KB
testcase_22 AC 54 ms
6,940 KB
testcase_23 AC 54 ms
6,944 KB
testcase_24 AC 55 ms
6,944 KB
testcase_25 AC 56 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio: readf, readln, writeln;
import std.conv: to;
import std.string: chomp;

void main() {
    const n = readln.chomp.to!int;
    auto uf = new UnionFind(n);
    bool gg = false;
    foreach(_; 0..n - 1) {
        int u, v;
        readf("%d %d\n", u, v);
        gg |= !uf.unite(u, v);
    }
    writeln(gg || uf.size(0) == n - 1 || uf.size(1) == n - 1 ? "Alice" : "Bob");
}

class UnionFind {
import std.algorithm: swap, filter;
import std.array: array;
import std.range;
private:
    int n;
    int[] par;
public:
    this(const int n) {
        this.n = n;
        par = new int[n];
        par[] = -1;
    }
    int length() const { return n; }
    ref auto opIndex(int i) {
        while(par[i] >= 0) {
            const p = par[par[i]];
            if(p < 0) {
                return par[i];
            }
            i = par[i] = p;
        }
        return i;
    }
    int size(const int i){ return -par[this[i]]; }
    bool unite(int i, int j) {
        i = this[i];
        j = this[j];
        if(i == j) {
            return false;
        }
        if(i > j) {
            swap(i, j);
        }
        par[i] += par[j];
        par[j] = i;
        return true;
    }
    int[][] groups() {
        int[][] res = new int[][n];
        foreach(i; 0..n) {
            res[this[i]] ~= i;
        }
        return res.filter!(a => !a.empty).array;
    }
}

bool isBipartite(UnionFind uf) {
    assert(uf.length % 2 == 0);
    const n = uf.length / 2;
    bool ok = true;
    foreach(i; 0..n) {
        ok &= uf[i] != uf[i + n];
    }
    return ok;
}
0