結果

問題 No.2948 move move rotti
ユーザー titiatitia
提出日時 2024-10-25 22:48:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,451 ms / 4,000 ms
コード長 941 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 275,712 KB
最終ジャッジ日時 2024-10-25 22:49:16
合計ジャッジ時間 25,845 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,796 KB
testcase_01 AC 40 ms
52,920 KB
testcase_02 AC 39 ms
52,584 KB
testcase_03 AC 1,398 ms
194,368 KB
testcase_04 AC 39 ms
53,220 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 38 ms
52,392 KB
testcase_07 AC 39 ms
53,196 KB
testcase_08 AC 3,451 ms
271,692 KB
testcase_09 AC 3,349 ms
271,736 KB
testcase_10 AC 38 ms
52,956 KB
testcase_11 AC 39 ms
52,592 KB
testcase_12 AC 108 ms
79,712 KB
testcase_13 AC 63 ms
70,404 KB
testcase_14 AC 38 ms
53,640 KB
testcase_15 AC 525 ms
114,408 KB
testcase_16 AC 2,787 ms
271,936 KB
testcase_17 AC 1,252 ms
188,920 KB
testcase_18 AC 2,424 ms
272,876 KB
testcase_19 AC 549 ms
153,172 KB
testcase_20 AC 979 ms
210,504 KB
testcase_21 AC 3,418 ms
273,780 KB
testcase_22 AC 143 ms
82,700 KB
testcase_23 AC 2,556 ms
275,712 KB
testcase_24 AC 79 ms
76,340 KB
testcase_25 AC 218 ms
95,372 KB
testcase_26 AC 72 ms
73,132 KB
testcase_27 AC 39 ms
53,704 KB
testcase_28 AC 89 ms
76,956 KB
testcase_29 AC 41 ms
53,120 KB
testcase_30 AC 69 ms
72,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M,K=map(int,input().split())
X=list(map(int,input().split()))

for i in range(K):
    X[i]-=1

E=[[] for i in range(N)]

for i in range(M):
    u,v=map(int,input().split())
    u-=1
    v-=1
    E[u].append(v)
    E[v].append(u)

def calc(x):
    LIST=[set() for i in range(N)]
    LIST[0].add(x)
    Q=[(x,1<<x,0)]
    USE=set((x,1<<x,0))

    while Q:
        now,hist,kai=Q.pop()

        for to in E[now]:
            if hist & (1<<to) == 0:
                hist2=hist|(1<<to)
                necq=(to,hist2,kai+1)
                if necq in USE:
                    continue
                LIST[kai+1].add(to)
                USE.add(necq)
                Q.append(necq)

    return LIST


LIST=[set(range(N)) for i in range(N)]

for x in X:
    L=calc(x)

    for i in range(N):
        LIST[i]&=L[i]

for i in range(N):
    if len(LIST[i])>0:
        print("Yes")
        exit()

print("No")
0