結果

問題 No.2948 move move rotti
ユーザー MichirakaraMichirakara
提出日時 2024-07-03 06:42:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,700 ms / 4,000 ms
コード長 773 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 507,032 KB
最終ジャッジ日時 2024-07-03 06:43:16
合計ジャッジ時間 22,810 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 38 ms
58,112 KB
testcase_02 AC 35 ms
52,352 KB
testcase_03 AC 776 ms
345,260 KB
testcase_04 AC 1,199 ms
494,848 KB
testcase_05 AC 43 ms
61,440 KB
testcase_06 AC 41 ms
60,160 KB
testcase_07 AC 1,161 ms
494,568 KB
testcase_08 AC 1,654 ms
506,836 KB
testcase_09 AC 1,700 ms
506,712 KB
testcase_10 AC 40 ms
58,956 KB
testcase_11 AC 41 ms
61,376 KB
testcase_12 AC 94 ms
86,104 KB
testcase_13 AC 651 ms
375,680 KB
testcase_14 AC 543 ms
333,608 KB
testcase_15 AC 317 ms
199,192 KB
testcase_16 AC 1,334 ms
465,420 KB
testcase_17 AC 759 ms
345,232 KB
testcase_18 AC 1,437 ms
506,628 KB
testcase_19 AC 1,206 ms
504,704 KB
testcase_20 AC 1,320 ms
506,100 KB
testcase_21 AC 1,634 ms
507,032 KB
testcase_22 AC 1,167 ms
502,508 KB
testcase_23 AC 1,483 ms
506,648 KB
testcase_24 AC 1,155 ms
502,864 KB
testcase_25 AC 1,161 ms
503,128 KB
testcase_26 AC 60 ms
70,228 KB
testcase_27 AC 39 ms
59,256 KB
testcase_28 AC 80 ms
82,156 KB
testcase_29 AC 35 ms
52,736 KB
testcase_30 AC 71 ms
72,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
x=[*map(lambda a:int(a)-1,input().split())]
g=[[]for _ in range(n)]
for i in range(m):
	u,v=map(int,input().split())
	g[u-1].append(v-1)
	g[v-1].append(u-1)

ans=[[1]*(n+1)for _ in range(n)]
for t in range(k):
	dp=[[[0]*(1<<n) for _ in range(n)]for _ in range(n+1)]
	dp[0][x[t]][1<<x[t]]=1
	for i in range(n):
		for j in range(n):
			ok=0
			for tmp in range(1<<n):
				if not dp[i][j][tmp]:continue
				ok=1
				for k in range(len(g[j])):
					if (tmp>>g[j][k])&1:continue
					dp[i+1][g[j][k]][tmp|(1<<g[j][k])]=1
			if not ok:ans[j][i]=0
	for i in range(n):
		ok=0
		for tmp in range(1<<n):
			if dp[n][i][tmp]:ok=1
		if not ok:ans[i][n]=0
ok=0
for i in range(n):
	for j in range(n):
		if ans[i][j]:ok=1
if ok:print("Yes")
else:print("No")
0