結果

問題 No.2948 move move rotti
ユーザー 👑 rin204rin204
提出日時 2024-10-26 00:45:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 925 ms / 4,000 ms
コード長 846 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 170,052 KB
最終ジャッジ日時 2024-10-26 00:46:11
合計ジャッジ時間 11,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,684 KB
testcase_01 AC 38 ms
53,692 KB
testcase_02 AC 38 ms
52,472 KB
testcase_03 AC 359 ms
107,776 KB
testcase_04 AC 478 ms
169,472 KB
testcase_05 AC 39 ms
53,532 KB
testcase_06 AC 54 ms
62,476 KB
testcase_07 AC 473 ms
169,496 KB
testcase_08 AC 925 ms
169,936 KB
testcase_09 AC 503 ms
126,252 KB
testcase_10 AC 38 ms
53,736 KB
testcase_11 AC 42 ms
60,300 KB
testcase_12 AC 85 ms
77,808 KB
testcase_13 AC 240 ms
114,184 KB
testcase_14 AC 231 ms
114,344 KB
testcase_15 AC 184 ms
89,280 KB
testcase_16 AC 605 ms
138,768 KB
testcase_17 AC 343 ms
107,884 KB
testcase_18 AC 523 ms
138,820 KB
testcase_19 AC 441 ms
144,984 KB
testcase_20 AC 648 ms
168,900 KB
testcase_21 AC 893 ms
169,980 KB
testcase_22 AC 536 ms
169,904 KB
testcase_23 AC 793 ms
169,908 KB
testcase_24 AC 489 ms
169,968 KB
testcase_25 AC 531 ms
170,052 KB
testcase_26 AC 65 ms
69,552 KB
testcase_27 AC 39 ms
53,692 KB
testcase_28 AC 88 ms
77,380 KB
testcase_29 AC 38 ms
53,064 KB
testcase_30 AC 65 ms
72,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
X = list(map(int, input().split()))
X = list(set(X))
edges = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append(v)
    edges[v].append(u)

if len(set(X)) == 1:
    print("Yes")
    exit()

ans = [(1 << k) - 1] * n


for x in X:
    x -= 1
    dp = [[False] * n for _ in range(1 << n)]
    dp[1 << x][x] = True
    ok = [0] * n
    for bit in range(1 << n):
        pc = bin(bit).count("1")
        for i in range(n):
            if not dp[bit][i]:
                continue

            ok[pc - 1] |= 1 << i
            for j in edges[i]:
                if not (bit >> j & 1):
                    dp[bit | 1 << j][j] = True

    for i in range(n):
        ans[i] &= ok[i]

if any(a > 0 for a in ans):
    print("Yes")
else:
    print("No")
0