結果

問題 No.2780 The Bottle Imp
ユーザー noriocnorioc
提出日時 2024-06-07 23:00:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,258 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,048 KB
最終ジャッジ日時 2024-06-08 10:37:08
合計ジャッジ時間 7,562 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 215 ms
77,824 KB
testcase_08 AC 267 ms
78,516 KB
testcase_09 AC 221 ms
78,364 KB
testcase_10 AC 245 ms
78,520 KB
testcase_11 AC 217 ms
77,824 KB
testcase_12 AC 341 ms
80,088 KB
testcase_13 AC 316 ms
79,136 KB
testcase_14 AC 122 ms
77,056 KB
testcase_15 AC 130 ms
76,800 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 123 ms
77,056 KB
testcase_19 AC 116 ms
77,056 KB
testcase_20 AC 118 ms
77,116 KB
testcase_21 WA -
testcase_22 AC 169 ms
77,568 KB
testcase_23 AC 139 ms
77,312 KB
testcase_24 AC 194 ms
77,696 KB
testcase_25 AC 295 ms
79,192 KB
testcase_26 AC 193 ms
77,696 KB
testcase_27 AC 116 ms
81,920 KB
testcase_28 AC 117 ms
82,048 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 150 ms
78,208 KB
testcase_32 AC 75 ms
76,032 KB
testcase_33 AC 142 ms
78,080 KB
testcase_34 AC 143 ms
78,080 KB
testcase_35 AC 80 ms
76,544 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 84 ms
76,160 KB
testcase_39 AC 140 ms
81,664 KB
testcase_40 AC 138 ms
81,536 KB
testcase_41 WA -
testcase_42 AC 39 ms
52,352 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n: int):
        self.data = [-1] * (n+1)
        self.nexts = [i for i in range(n+1)]

    def root(self, a: int) -> int:
        if self.data[a] < 0: return a
        self.data[a] = self.root(self.data[a])
        return self.data[a]

    def unite(self, a: int, b: int) -> bool:
        pa = self.root(a)
        pb = self.root(b)
        if pa == pb: return False
        if self.data[pa] > self.data[pb]:
            pa, pb = pb, pa
        self.data[pa] += self.data[pb] # pa を pb をつなげる
        self.data[pb] = pa
        self.nexts[pa], self.nexts[pb] = self.nexts[pb], self.nexts[pa]
        return True

    def issame(self, a: int, b: int) -> bool:
        return self.root(a) == self.root(b)

    def size(self, a: int) -> int:
        """a が属する集合のサイズ"""
        return -self.data[self.root(a)]

    def group(self, a: int):
        """a が属する集合"""
        yield a
        x = a
        while self.nexts[x] != a:
            x = self.nexts[x]
            yield x


N = int(input())
uf = UnionFind(N)
for i in range(N):
    M, *A = list(map(int, input().split()))
    for a in A:
        uf.unite(i, a-1)

if uf.size(0) == N:
    print('Yes')
else:
    print('No')
0