結果

問題 No.1805 Approaching Many Typhoon
ユーザー flippergoflippergo
提出日時 2024-11-19 15:24:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 73,996 KB
最終ジャッジ日時 2024-11-19 15:24:21
合計ジャッジ時間 4,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,000 KB
testcase_01 AC 43 ms
54,052 KB
testcase_02 AC 44 ms
54,412 KB
testcase_03 AC 43 ms
53,368 KB
testcase_04 AC 42 ms
54,708 KB
testcase_05 AC 45 ms
54,096 KB
testcase_06 AC 43 ms
53,844 KB
testcase_07 AC 43 ms
54,684 KB
testcase_08 AC 43 ms
54,892 KB
testcase_09 AC 42 ms
55,092 KB
testcase_10 AC 43 ms
53,616 KB
testcase_11 AC 43 ms
54,360 KB
testcase_12 AC 44 ms
54,168 KB
testcase_13 AC 44 ms
54,460 KB
testcase_14 AC 44 ms
54,308 KB
testcase_15 AC 44 ms
55,112 KB
testcase_16 AC 42 ms
55,360 KB
testcase_17 AC 44 ms
54,188 KB
testcase_18 AC 43 ms
54,472 KB
testcase_19 AC 44 ms
54,288 KB
testcase_20 AC 43 ms
53,860 KB
testcase_21 AC 43 ms
54,424 KB
testcase_22 AC 43 ms
53,752 KB
testcase_23 AC 44 ms
54,152 KB
testcase_24 AC 43 ms
53,692 KB
testcase_25 AC 43 ms
55,032 KB
testcase_26 AC 43 ms
54,028 KB
testcase_27 AC 43 ms
55,008 KB
testcase_28 AC 74 ms
72,696 KB
testcase_29 AC 73 ms
72,620 KB
testcase_30 AC 74 ms
73,996 KB
testcase_31 AC 74 ms
73,100 KB
testcase_32 AC 45 ms
55,924 KB
testcase_33 AC 45 ms
55,808 KB
testcase_34 AC 48 ms
55,844 KB
testcase_35 AC 56 ms
63,232 KB
testcase_36 AC 61 ms
66,444 KB
testcase_37 AC 43 ms
54,260 KB
testcase_38 AC 43 ms
55,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
s,g = map(int,input().split())
A = [list(map(int,input().split())) for _ in range(M)]
U = int(input())
I = set(list(map(int,input().split())))
G = {i:[] for i in range(1,N+1)}
for i in range(M):
    a,b = A[i]
    if a in I or b in I:continue
    G[a].append(b)
    G[b].append(a)
dist = [-1]*(N+1)
dist[s] = 0
que = deque([s])
while que:
    x = que.popleft()
    for y in G[x]:
        if dist[y]==-1:
            dist[y] = dist[x]+1
            que.append(y)
if dist[g]==-1:
    print("No")
else:
    print("Yes")
0