結果

問題 No.2948 move move rotti
ユーザー tipstar0125tipstar0125
提出日時 2024-10-25 23:01:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 774 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 59,936 KB
最終ジャッジ日時 2024-10-25 23:02:23
合計ジャッジ時間 2,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,340 KB
testcase_01 AC 38 ms
52,868 KB
testcase_02 AC 42 ms
52,932 KB
testcase_03 AC 42 ms
58,900 KB
testcase_04 AC 39 ms
52,660 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 39 ms
52,816 KB
testcase_07 AC 39 ms
53,248 KB
testcase_08 AC 43 ms
58,792 KB
testcase_09 AC 42 ms
58,680 KB
testcase_10 AC 38 ms
53,352 KB
testcase_11 WA -
testcase_12 AC 39 ms
54,136 KB
testcase_13 AC 38 ms
52,812 KB
testcase_14 AC 38 ms
53,356 KB
testcase_15 AC 39 ms
52,808 KB
testcase_16 AC 42 ms
59,496 KB
testcase_17 AC 39 ms
53,460 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 44 ms
59,108 KB
testcase_21 AC 43 ms
58,916 KB
testcase_22 AC 39 ms
53,960 KB
testcase_23 AC 42 ms
58,516 KB
testcase_24 AC 39 ms
52,864 KB
testcase_25 AC 40 ms
54,416 KB
testcase_26 AC 39 ms
53,176 KB
testcase_27 AC 38 ms
53,184 KB
testcase_28 WA -
testcase_29 AC 38 ms
53,732 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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):
    # print(pos,depth)
    dist[pos].add(depth)
    for nxt in G[pos]:
    # for nxt in range(N):
        if pos==nxt:continue
        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