結果

問題 No.2780 The Bottle Imp
ユーザー hato336hato336
提出日時 2024-06-07 21:40:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,650 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 93,952 KB
最終ジャッジ日時 2024-06-08 10:28:04
合計ジャッジ時間 10,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
85,504 KB
testcase_01 AC 128 ms
85,760 KB
testcase_02 AC 129 ms
85,752 KB
testcase_03 AC 132 ms
85,632 KB
testcase_04 AC 131 ms
85,632 KB
testcase_05 AC 129 ms
85,504 KB
testcase_06 AC 123 ms
85,504 KB
testcase_07 AC 268 ms
91,296 KB
testcase_08 AC 291 ms
91,264 KB
testcase_09 AC 266 ms
91,432 KB
testcase_10 AC 265 ms
91,440 KB
testcase_11 AC 260 ms
91,264 KB
testcase_12 AC 342 ms
91,776 KB
testcase_13 AC 329 ms
92,160 KB
testcase_14 AC 188 ms
90,556 KB
testcase_15 AC 190 ms
90,744 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 187 ms
90,532 KB
testcase_19 AC 181 ms
90,568 KB
testcase_20 AC 190 ms
90,368 KB
testcase_21 WA -
testcase_22 AC 222 ms
91,008 KB
testcase_23 AC 205 ms
90,868 KB
testcase_24 AC 255 ms
91,136 KB
testcase_25 AC 299 ms
91,648 KB
testcase_26 AC 266 ms
91,136 KB
testcase_27 AC 180 ms
93,952 KB
testcase_28 AC 182 ms
93,952 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 198 ms
91,008 KB
testcase_32 AC 152 ms
90,236 KB
testcase_33 AC 209 ms
91,264 KB
testcase_34 AC 210 ms
91,136 KB
testcase_35 AC 155 ms
90,496 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 157 ms
90,368 KB
testcase_39 AC 198 ms
93,312 KB
testcase_40 AC 194 ms
93,312 KB
testcase_41 WA -
testcase_42 AC 123 ms
85,632 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline

#
#alist = []
class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def size(self, x):
        return -self.parents[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return len(self.roots())

    def all_group_members(self):
        group_members = collections.defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return ''.join(f'{r}: {m}' for r, m in self.all_group_members().items())
n = int(input())
uf = UnionFind(n)
for i in range(n):
    a = list(map(int,input().split()))
    for j in a[1:]:
        uf.union(i,j-1)
print('Yes' if uf.group_count() == 1 else 'No')
0