結果

問題 No.2948 move move rotti
ユーザー detteiuudetteiuu
提出日時 2024-10-25 21:52:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 808 ms / 4,000 ms
コード長 726 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 163,384 KB
最終ジャッジ日時 2024-10-25 21:52:49
合計ジャッジ時間 8,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,588 KB
testcase_01 AC 38 ms
52,552 KB
testcase_02 AC 38 ms
52,888 KB
testcase_03 AC 324 ms
107,884 KB
testcase_04 AC 207 ms
113,928 KB
testcase_05 AC 42 ms
59,708 KB
testcase_06 AC 43 ms
60,676 KB
testcase_07 AC 195 ms
113,748 KB
testcase_08 AC 673 ms
145,004 KB
testcase_09 AC 688 ms
144,808 KB
testcase_10 AC 38 ms
53,724 KB
testcase_11 AC 40 ms
58,248 KB
testcase_12 AC 83 ms
76,876 KB
testcase_13 AC 132 ms
91,992 KB
testcase_14 AC 121 ms
94,788 KB
testcase_15 AC 153 ms
88,800 KB
testcase_16 AC 598 ms
132,708 KB
testcase_17 AC 301 ms
101,828 KB
testcase_18 AC 590 ms
139,092 KB
testcase_19 AC 330 ms
126,320 KB
testcase_20 AC 403 ms
131,380 KB
testcase_21 AC 808 ms
163,384 KB
testcase_22 AC 251 ms
118,644 KB
testcase_23 AC 561 ms
139,072 KB
testcase_24 AC 223 ms
116,964 KB
testcase_25 AC 273 ms
115,652 KB
testcase_26 AC 61 ms
68,392 KB
testcase_27 AC 37 ms
53,320 KB
testcase_28 AC 75 ms
74,404 KB
testcase_29 AC 38 ms
52,304 KB
testcase_30 AC 65 ms
70,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
X = list(map(int, input().split()))
G = [[] for _ in range(N)]
for _ in range(M):
    u, v = map(int, input().split())
    G[u-1].append(v-1)
    G[v-1].append(u-1)

def DP(start):
    dp = [[False]*N for _ in range(1<<N)]
    dp[1<<start][start] = True
    move = [0]*N
    for i in range(1<<N):
        for j in range(N):
            if not dp[i][j]:
                continue
            move[i.bit_count()-1] |= 1<<j
            for v in G[j]:
                if 1<<j & i and not 1<<v & i:
                    dp[i|1<<v][v] = True
    return move

ans = [(1<<N)-1]*N
for x in X:
    move = DP(x-1)
    for i in range(N):
        ans[i] &= move[i]

print("Yes" if max(ans) >= 1 else "No")
0