結果

問題 No.2948 move move rotti
ユーザー aa
提出日時 2024-10-25 22:41:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 474 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-10-25 22:41:11
合計ジャッジ時間 2,664 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,216 KB
testcase_01 AC 38 ms
52,936 KB
testcase_02 AC 34 ms
52,664 KB
testcase_03 WA -
testcase_04 AC 38 ms
53,364 KB
testcase_05 AC 36 ms
52,532 KB
testcase_06 AC 36 ms
52,764 KB
testcase_07 AC 36 ms
52,928 KB
testcase_08 AC 37 ms
53,892 KB
testcase_09 WA -
testcase_10 AC 36 ms
52,664 KB
testcase_11 AC 36 ms
52,464 KB
testcase_12 WA -
testcase_13 AC 36 ms
53,100 KB
testcase_14 AC 36 ms
53,500 KB
testcase_15 AC 35 ms
53,044 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
53,488 KB
testcase_21 AC 36 ms
53,648 KB
testcase_22 AC 35 ms
53,552 KB
testcase_23 AC 39 ms
53,496 KB
testcase_24 AC 40 ms
52,384 KB
testcase_25 AC 37 ms
52,732 KB
testcase_26 WA -
testcase_27 AC 37 ms
52,472 KB
testcase_28 WA -
testcase_29 AC 35 ms
52,448 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
x=list(map(int,input().split()))
a=[[] for i in range(n)]
for i in range(m):
	s,t=map(int,input().split())
	a[s-1].append(t-1)
	a[t-1].append(s-1)
y=[0 for i in range(n)]
now={x[0]-1}
used={x[0]-1}
c=1 
while now:
	new=set()
	for i in now:
		for j in a[i]:
			if j not in used:
				new.add(j)
				used.add(j)
				y[j]=c
	now=new
	c+=1
for i in x:
	if i-1 not in used:
		print('No')
		exit()
	if y[i-1]%2!=0:
		print('No')
		exit()
print('Yes')
0