結果

問題 No.2948 move move rotti
ユーザー miya145592miya145592
提出日時 2024-10-25 22:06:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 718 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 86,316 KB
最終ジャッジ日時 2024-10-25 22:06:19
合計ジャッジ時間 5,909 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,760 KB
testcase_01 AC 38 ms
53,548 KB
testcase_02 AC 37 ms
53,076 KB
testcase_03 TLE -
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 #

def dfs(v, d):
    dist[v].add(d)
    for nv in G[v]:
        if seen[nv]==1:
            continue
        seen[nv] = 1
        dfs(nv, d+1)
        seen[nv] = 0
    #print(dist)

import sys
input = sys.stdin.readline
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())
    u-=1
    v-=1
    G[u].append(v)
    G[v].append(u)
for i in range(K):
    X[i]-=1
for i in range(N):
    dist = [set() for _ in range(N)]
    seen = [0 for _ in range(N)]
    seen[i] = 1
    dfs(i, 0)
    tmp = dist[X[0]]
    for j in range(1, K):
        tmp &= dist[X[j]]
    if len(tmp)>0:
        print("Yes")
        exit()
print("No")
0