結果

問題 No.2948 move move rotti
ユーザー tipstar0125tipstar0125
提出日時 2024-10-25 22:37:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 693 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 86,688 KB
最終ジャッジ日時 2024-10-25 22:38:05
合計ジャッジ時間 6,166 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,756 KB
testcase_01 AC 40 ms
53,120 KB
testcase_02 AC 39 ms
54,308 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 #

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)

def dfs(pos,depth,vis,dist):
    dist[pos].add(depth)
    for nxt in G[pos]:
        if vis[nxt]:
            continue
        vis[nxt]=True
        dfs(nxt,depth+1,vis,dist)
        vis[nxt]=False


dist=[]
for x in X:
    vis=[False for _ in range(N)]
    d=[set() for _ in range(N)]
    vis[x-1]=True
    dfs(x-1,0,vis,d)
    dist.append(d)

for j in range(N):
    s=dist[0][j]
    for i in range(1,K):
        s&=dist[i][j]
    if len(s)>0:
        print("Yes")
        exit()
print("No")

0