結果

問題 No.2948 move move rotti
ユーザー miya145592miya145592
提出日時 2024-10-25 22:34:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 4,000 ms
コード長 870 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 76,720 KB
最終ジャッジ日時 2024-10-25 22:34:41
合計ジャッジ時間 3,313 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,016 KB
testcase_01 AC 38 ms
53,796 KB
testcase_02 AC 38 ms
53,476 KB
testcase_03 AC 52 ms
69,636 KB
testcase_04 AC 38 ms
52,592 KB
testcase_05 AC 38 ms
53,408 KB
testcase_06 AC 38 ms
54,156 KB
testcase_07 AC 38 ms
53,052 KB
testcase_08 AC 105 ms
76,604 KB
testcase_09 AC 54 ms
70,836 KB
testcase_10 AC 38 ms
52,788 KB
testcase_11 AC 42 ms
53,764 KB
testcase_12 AC 49 ms
63,356 KB
testcase_13 AC 55 ms
66,624 KB
testcase_14 AC 40 ms
54,436 KB
testcase_15 AC 50 ms
66,852 KB
testcase_16 AC 53 ms
68,264 KB
testcase_17 AC 51 ms
66,580 KB
testcase_18 AC 50 ms
65,456 KB
testcase_19 AC 73 ms
76,008 KB
testcase_20 AC 79 ms
76,240 KB
testcase_21 AC 99 ms
76,720 KB
testcase_22 AC 66 ms
76,100 KB
testcase_23 AC 82 ms
76,108 KB
testcase_24 AC 53 ms
66,616 KB
testcase_25 AC 67 ms
75,752 KB
testcase_26 AC 49 ms
63,448 KB
testcase_27 AC 43 ms
53,120 KB
testcase_28 AC 60 ms
69,640 KB
testcase_29 AC 38 ms
52,660 KB
testcase_30 AC 45 ms
61,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import sys
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
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
    used = set()
    dfs(i, 0, -1)
    tmp = dist[X[0]]
    for j in range(1, K):
        tmp &= dist[X[j]]
    if len(tmp)>0:
        print("Yes")
        exit()
print("No")
0