結果

問題 No.2948 move move rotti
ユーザー tkykwtnbtkykwtnb
提出日時 2024-10-25 22:18:40
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 751 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 634,172 KB
最終ジャッジ日時 2024-10-25 22:18:55
合計ジャッジ時間 5,899 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
62,000 KB
testcase_01 AC 41 ms
54,948 KB
testcase_02 AC 43 ms
54,504 KB
testcase_03 MLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque,defaultdict
N,M,K=map(int,input().split())
X=list(map(lambda x: int(x)-1,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)
routes=[[] for _ in range(K)]
for k in range(K):
    Q=deque([(X[k],)])
    while Q:
        route=Q.popleft()
        for nxt in G[list(route)[-1]]:
            if nxt not in set(route):
                Q.append(route+(nxt,))
    routes[k].append(route)
cnt=[[0 for _ in range(N)] for _ in range(N)]
for k in range(K):
    for route in routes[k]:
        for ii,n in enumerate(route):
            cnt[ii][n]+=1
for i in range(N):
    for n in range(N):
        if cnt[i][n]==K:exit(print("Yes"))
print("No")
0