結果

問題 No.2780 The Bottle Imp
ユーザー AwashAmityOakAwashAmityOak
提出日時 2024-06-07 22:13:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 796 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-06-08 10:31:17
合計ジャッジ時間 7,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 35 ms
52,480 KB
testcase_07 AC 244 ms
78,720 KB
testcase_08 AC 276 ms
79,108 KB
testcase_09 AC 249 ms
79,236 KB
testcase_10 AC 245 ms
78,720 KB
testcase_11 AC 213 ms
79,068 KB
testcase_12 AC 323 ms
80,640 KB
testcase_13 AC 276 ms
80,256 KB
testcase_14 AC 104 ms
76,928 KB
testcase_15 AC 106 ms
76,800 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 105 ms
76,800 KB
testcase_19 AC 108 ms
76,672 KB
testcase_20 AC 106 ms
77,056 KB
testcase_21 WA -
testcase_22 AC 148 ms
77,796 KB
testcase_23 AC 135 ms
77,824 KB
testcase_24 AC 216 ms
78,696 KB
testcase_25 AC 232 ms
79,360 KB
testcase_26 AC 174 ms
78,208 KB
testcase_27 AC 108 ms
82,176 KB
testcase_28 AC 108 ms
82,256 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 130 ms
78,380 KB
testcase_32 AC 71 ms
76,160 KB
testcase_33 AC 127 ms
78,692 KB
testcase_34 AC 129 ms
78,848 KB
testcase_35 AC 71 ms
76,032 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 71 ms
76,288 KB
testcase_39 AC 123 ms
82,048 KB
testcase_40 AC 130 ms
82,396 KB
testcase_41 WA -
testcase_42 AC 37 ms
52,608 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind():
	def __init__(self, n):
		self.par = [-1] * n
		self.rank = [0] * n
		self.siz = [1] * n

	def root(self, x):
		if self.par[x] == -1: return x
		else:
			self.par[x] = self.root(self.par[x])
			return self.par[x]

	def issame(self, x, y):
		return self.root(x) == self.root(y)

	def unite(self, x, y):
		rx = self.root(x)
		ry = self.root(y)
		if rx == ry: return False

		if self.rank[rx] < self.rank[ry]:
			rx, ry = ry, rx
		self.par[ry] = rx
		if self.rank[rx] == self.rank[ry]:
			self.rank[rx] += 1
		self.siz[rx] += self.siz[ry]
		return True

	def size(self, x):
		return self.siz[self.root(x)]

N = int(input())
uf = UnionFind(N)
for i in range(N):
	M, *A = map(int, input().split())
	for j in range(M):
		uf.unite(i, A[j]-1)
print("Yes" if uf.size(0) == N else "No")
0