結果

問題 No.1805 Approaching Many Typhoon
ユーザー 👑 KazunKazun
提出日時 2022-01-12 21:53:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 71,268 KB
最終ジャッジ日時 2024-11-15 15:06:41
合計ジャッジ時間 2,973 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,240 KB
testcase_01 AC 40 ms
53,816 KB
testcase_02 AC 40 ms
54,524 KB
testcase_03 AC 39 ms
54,380 KB
testcase_04 WA -
testcase_05 AC 39 ms
54,324 KB
testcase_06 AC 39 ms
54,876 KB
testcase_07 WA -
testcase_08 AC 39 ms
54,372 KB
testcase_09 AC 39 ms
55,120 KB
testcase_10 AC 39 ms
54,060 KB
testcase_11 AC 40 ms
54,860 KB
testcase_12 AC 41 ms
54,004 KB
testcase_13 WA -
testcase_14 AC 40 ms
54,148 KB
testcase_15 AC 39 ms
53,792 KB
testcase_16 AC 39 ms
54,108 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 38 ms
54,612 KB
testcase_20 AC 39 ms
54,796 KB
testcase_21 AC 38 ms
54,928 KB
testcase_22 AC 39 ms
54,292 KB
testcase_23 AC 39 ms
55,112 KB
testcase_24 AC 39 ms
54,140 KB
testcase_25 AC 39 ms
54,724 KB
testcase_26 AC 39 ms
53,692 KB
testcase_27 AC 40 ms
54,548 KB
testcase_28 AC 63 ms
71,268 KB
testcase_29 AC 68 ms
69,760 KB
testcase_30 AC 69 ms
69,888 KB
testcase_31 AC 70 ms
70,016 KB
testcase_32 AC 43 ms
54,528 KB
testcase_33 AC 43 ms
54,400 KB
testcase_34 AC 45 ms
55,296 KB
testcase_35 AC 51 ms
56,960 KB
testcase_36 AC 58 ms
63,360 KB
testcase_37 AC 42 ms
53,888 KB
testcase_38 AC 42 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N,M=map(int,input().split())
S,G=map(int,input().split())

E=[[] for _ in range(N+1)]
for _ in range(M):
    F,T=map(int,input().split())
    E[F].append(T)
    E[T].append(F)

U=int(input())
I=list(map(int,input().split()))

P=[0]*(N+1)
for i in I:
    P[i]=1

Q=deque([S])
X=[0]*(N+1); X[S]=1

while Q:
    u=Q.popleft()
    for v in E[u]:
        if P[v]==0 and X[v]==0:
            X[v]=1
            Q.append(v)

print("Yes" if X[T] else "No")
0