結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
85,548 KB
testcase_01 AC 124 ms
85,760 KB
testcase_02 AC 124 ms
85,424 KB
testcase_03 AC 125 ms
85,428 KB
testcase_04 AC 126 ms
85,668 KB
testcase_05 AC 128 ms
85,528 KB
testcase_06 AC 125 ms
85,632 KB
testcase_07 AC 197 ms
94,464 KB
testcase_08 AC 219 ms
95,868 KB
testcase_09 AC 205 ms
94,720 KB
testcase_10 AC 229 ms
95,488 KB
testcase_11 AC 214 ms
94,624 KB
testcase_12 AC 221 ms
99,012 KB
testcase_13 AC 221 ms
99,328 KB
testcase_14 AC 175 ms
91,008 KB
testcase_15 AC 170 ms
91,136 KB
testcase_16 AC 167 ms
91,136 KB
testcase_17 AC 166 ms
91,136 KB
testcase_18 AC 169 ms
91,372 KB
testcase_19 AC 167 ms
91,136 KB
testcase_20 AC 183 ms
91,392 KB
testcase_21 AC 166 ms
91,264 KB
testcase_22 AC 189 ms
92,288 KB
testcase_23 AC 169 ms
91,008 KB
testcase_24 AC 213 ms
94,208 KB
testcase_25 AC 234 ms
97,384 KB
testcase_26 AC 191 ms
92,768 KB
testcase_27 AC 190 ms
97,792 KB
testcase_28 AC 194 ms
97,664 KB
testcase_29 WA -
testcase_30 AC 192 ms
93,692 KB
testcase_31 AC 232 ms
100,864 KB
testcase_32 AC 150 ms
90,368 KB
testcase_33 AC 231 ms
101,872 KB
testcase_34 AC 229 ms
101,632 KB
testcase_35 AC 158 ms
90,368 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 152 ms
90,240 KB
testcase_39 AC 222 ms
98,620 KB
testcase_40 AC 224 ms
98,564 KB
testcase_41 WA -
testcase_42 AC 123 ms
85,376 KB
testcase_43 AC 124 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

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)
edge = [[] for i in range(n)]
for i in range(n):
    a = list(map(int,input().split()))
    for j in a[1:]:
        edge[i].append(j-1)
    

start = 0
d = collections.deque()
dist = [10**18 for i in range(n)]
d.append(start)
dist[start] = 0
while d:
    now = d.popleft()
    for i in edge[now]:
        if dist[i] > dist[now] + 1:
            dist[i] = dist[now] + 1
            d.append(i)
print('Yes' if all(dist[i] < 10**18 for i in range(n)) else 'No')
0