結果

問題 No.2780 The Bottle Imp
ユーザー tkykwtnbtkykwtnb
提出日時 2024-06-07 22:16:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,091 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,396 KB
最終ジャッジ日時 2024-06-08 10:31:43
合計ジャッジ時間 7,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 247 ms
81,016 KB
testcase_08 AC 234 ms
81,292 KB
testcase_09 AC 270 ms
81,540 KB
testcase_10 AC 229 ms
81,136 KB
testcase_11 AC 223 ms
81,072 KB
testcase_12 AC 280 ms
86,396 KB
testcase_13 AC 309 ms
84,116 KB
testcase_14 AC 115 ms
76,672 KB
testcase_15 AC 113 ms
77,144 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 113 ms
76,672 KB
testcase_19 AC 114 ms
77,440 KB
testcase_20 AC 117 ms
77,184 KB
testcase_21 WA -
testcase_22 AC 164 ms
78,124 KB
testcase_23 AC 135 ms
77,440 KB
testcase_24 AC 193 ms
79,872 KB
testcase_25 AC 250 ms
82,568 KB
testcase_26 AC 227 ms
79,248 KB
testcase_27 AC 117 ms
82,576 KB
testcase_28 AC 116 ms
82,560 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 152 ms
83,464 KB
testcase_32 AC 71 ms
76,416 KB
testcase_33 AC 148 ms
84,240 KB
testcase_34 AC 148 ms
84,236 KB
testcase_35 AC 80 ms
76,160 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 79 ms
76,672 KB
testcase_39 AC 137 ms
81,948 KB
testcase_40 AC 144 ms
81,952 KB
testcase_41 WA -
testcase_42 AC 38 ms
52,096 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.n = n
        self.parent_size = [-1] * n
    def leader(self, a):
        if self.parent_size[a] < 0: return a
        self.parent_size[a] = self.leader(self.parent_size[a])
        return self.parent_size[a]
    def merge(self, a, b):
        x, y = self.leader(a), self.leader(b)
        if x == y: return
        if abs(self.parent_size[x]) < abs(self.parent_size[y]): x, y = y, x
        self.parent_size[x] += self.parent_size[y]
        self.parent_size[y] = x
        return
    def same(self, a, b):
        return self.leader(a) == self.leader(b)
    def size(self, a):
        return abs(self.parent_size[self.leader(a)])
    def groups(self):
        result=[[] for _ in range(self.n)]
        for i in range(self.n):
            result[self.leader(i)].append(i)
        return [r for r in result if r != []]
N=int(input())
UF=UnionFind(N)
for i in range(N):
    T=list(map(int,input().split()))
    F=list(map(lambda x:x-1,T[1:]))
    for f in F:
        UF.merge(i,f)
if len(UF.groups())==1:print("Yes")
else:print("No")
0