結果

問題 No.2948 move move rotti
ユーザー tassei903tassei903
提出日時 2024-10-25 22:44:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 756 ms / 4,000 ms
コード長 1,245 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 169,912 KB
最終ジャッジ日時 2024-10-25 22:44:13
合計ジャッジ時間 11,746 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,480 KB
testcase_01 AC 41 ms
54,424 KB
testcase_02 AC 40 ms
53,680 KB
testcase_03 AC 756 ms
155,292 KB
testcase_04 AC 277 ms
146,696 KB
testcase_05 AC 48 ms
61,308 KB
testcase_06 AC 53 ms
64,988 KB
testcase_07 AC 276 ms
147,096 KB
testcase_08 AC 750 ms
155,256 KB
testcase_09 AC 748 ms
155,188 KB
testcase_10 AC 48 ms
61,092 KB
testcase_11 AC 49 ms
62,236 KB
testcase_12 AC 115 ms
78,556 KB
testcase_13 AC 294 ms
143,996 KB
testcase_14 AC 284 ms
146,216 KB
testcase_15 AC 696 ms
155,820 KB
testcase_16 AC 700 ms
155,280 KB
testcase_17 AC 677 ms
156,228 KB
testcase_18 AC 556 ms
157,908 KB
testcase_19 AC 422 ms
169,912 KB
testcase_20 AC 445 ms
163,948 KB
testcase_21 AC 734 ms
155,372 KB
testcase_22 AC 309 ms
142,512 KB
testcase_23 AC 597 ms
156,676 KB
testcase_24 AC 294 ms
143,888 KB
testcase_25 AC 314 ms
134,496 KB
testcase_26 AC 71 ms
72,148 KB
testcase_27 AC 47 ms
62,332 KB
testcase_28 AC 92 ms
77,348 KB
testcase_29 AC 39 ms
53,452 KB
testcase_30 AC 75 ms
74,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n,m,k = na()
x = [x-1 for x in na()]
G = [[] for i in range(n)]
for _ in range(m):
    u,v = na()
    u -= 1
    v -= 1
    G[u].append(v)
    G[v].append(u)
g = [[0 for j in range(n)] for i in range(n)]

for i in range(n):
    dp = [[0] * n for _ in range(1<<n)]
    dp[1<<i][i] = 1
    for bit in range(1<<n):
        for fr in range(n):
            if dp[bit][fr] == 0:
                continue
            for to in G[fr]:
                if bit >> to & 1:continue
                nbit = bit | (1 << to)
                dp[nbit][to] |= dp[bit][fr] << 1
    # print(dp)
    for bit in range(1 << n):
        for j in range(n):
            g[i][j] |= dp[bit][j]

# for i in range(n):
#     for j in range(n):
#         print(i, j, bin(g[i][j]))
for v in range(n):
    y = (1 << n) - 1
    for i in range(k):
        y &= g[x[i]][v]
    
    if y:
        Yes()
        break
else:
    No()
0