結果

問題 No.2674 k-Walk on Bipartite
ユーザー shobonvipshobonvip
提出日時 2024-03-15 21:55:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 475 ms / 2,000 ms
コード長 1,391 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 100,080 KB
最終ジャッジ日時 2024-09-30 00:59:57
合計ジャッジ時間 7,771 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,528 KB
testcase_01 AC 36 ms
54,600 KB
testcase_02 AC 36 ms
55,016 KB
testcase_03 AC 34 ms
52,592 KB
testcase_04 AC 33 ms
53,408 KB
testcase_05 AC 36 ms
53,940 KB
testcase_06 AC 35 ms
53,556 KB
testcase_07 AC 356 ms
96,772 KB
testcase_08 AC 390 ms
93,568 KB
testcase_09 AC 242 ms
93,328 KB
testcase_10 AC 432 ms
96,324 KB
testcase_11 AC 313 ms
91,116 KB
testcase_12 AC 430 ms
93,276 KB
testcase_13 AC 251 ms
91,532 KB
testcase_14 AC 114 ms
88,020 KB
testcase_15 AC 475 ms
100,080 KB
testcase_16 AC 381 ms
98,588 KB
testcase_17 AC 368 ms
93,252 KB
testcase_18 AC 170 ms
86,072 KB
testcase_19 AC 326 ms
93,352 KB
testcase_20 AC 268 ms
95,720 KB
testcase_21 AC 398 ms
94,592 KB
testcase_22 AC 429 ms
98,132 KB
testcase_23 AC 33 ms
54,116 KB
testcase_24 AC 32 ms
54,072 KB
testcase_25 AC 32 ms
53,236 KB
testcase_26 AC 33 ms
52,460 KB
testcase_27 AC 31 ms
53,008 KB
testcase_28 AC 33 ms
54,112 KB
testcase_29 AC 33 ms
52,900 KB
testcase_30 AC 32 ms
53,324 KB
testcase_31 AC 33 ms
53,688 KB
testcase_32 AC 33 ms
53,308 KB
testcase_33 AC 33 ms
52,676 KB
testcase_34 AC 33 ms
53,068 KB
testcase_35 AC 33 ms
53,820 KB
testcase_36 AC 35 ms
52,412 KB
testcase_37 AC 33 ms
53,816 KB
testcase_38 AC 34 ms
54,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


n, m = map(int,input().split())
s, t, k = map(int,input().split())
s -= 1
t -= 1

if n == 1:
	print("No")
	exit()

ikeru = [[] for i in range(n)]
uf = UnionFind(n)
for i in range(m):
	a, b = map(int,input().split())
	a -= 1
	b -= 1
	ikeru[a].append(b)
	ikeru[b].append(a)
	uf.union(a, b)

if n == 2:
	if s == t:
		if k % 2 == 1:
			print("No")
			exit()
		if uf.find(0) != uf.find(1):
			print("Unknown")
			exit()
		print("Yes")
	else:
		if k % 2 == 0:
			print("No")
			exit()
		if uf.find(0) != uf.find(1):
			print("Unknown")
			exit()
		print("Yes")
	exit()

if uf.find(s) != uf.find(t):
	print("Unknown")
	exit()

from collections import deque

dst = [0] * n
tansaku = [0] * n
tansaku[s] = 1
mada = deque([])
mada.append(s)

while mada:
	i = mada.popleft()
	for j in ikeru[i]:
		if tansaku[j] == 0:
			tansaku[j] = 1
			mada.append(j)
			dst[j] = dst[i] + 1

if dst[t] % 2 != k % 2:
	print("No")
	exit()

if dst[t] <= k:
	print("Yes")
	exit()

print("Unknown")
0