結果

問題 No.2948 move move rotti
ユーザー miya145592miya145592
提出日時 2024-10-25 22:07:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 754 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 66,492 KB
最終ジャッジ日時 2024-10-25 22:08:16
合計ジャッジ時間 2,535 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,484 KB
testcase_01 AC 53 ms
52,248 KB
testcase_02 AC 37 ms
52,708 KB
testcase_03 AC 41 ms
58,704 KB
testcase_04 AC 35 ms
53,532 KB
testcase_05 AC 35 ms
54,004 KB
testcase_06 AC 36 ms
53,072 KB
testcase_07 AC 36 ms
52,620 KB
testcase_08 AC 53 ms
66,400 KB
testcase_09 AC 40 ms
59,628 KB
testcase_10 AC 35 ms
53,244 KB
testcase_11 WA -
testcase_12 AC 36 ms
53,536 KB
testcase_13 AC 45 ms
61,844 KB
testcase_14 AC 36 ms
54,072 KB
testcase_15 AC 40 ms
58,852 KB
testcase_16 AC 39 ms
59,036 KB
testcase_17 AC 39 ms
59,540 KB
testcase_18 AC 36 ms
53,372 KB
testcase_19 AC 51 ms
64,884 KB
testcase_20 AC 56 ms
65,992 KB
testcase_21 AC 56 ms
66,492 KB
testcase_22 AC 63 ms
63,520 KB
testcase_23 AC 55 ms
65,856 KB
testcase_24 AC 47 ms
62,068 KB
testcase_25 AC 48 ms
63,504 KB
testcase_26 AC 36 ms
52,196 KB
testcase_27 AC 36 ms
51,940 KB
testcase_28 AC 41 ms
58,820 KB
testcase_29 AC 36 ms
53,264 KB
testcase_30 AC 37 ms
52,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(v, d):
    if d in dist[v]:
        return
    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