結果

問題 No.1805 Approaching Many Typhoon
ユーザー 8989
提出日時 2022-02-21 12:49:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,189 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 70,696 KB
最終ジャッジ日時 2024-06-29 17:12:58
合計ジャッジ時間 3,161 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,596 KB
testcase_01 AC 39 ms
53,368 KB
testcase_02 AC 40 ms
53,820 KB
testcase_03 AC 39 ms
53,756 KB
testcase_04 AC 39 ms
53,348 KB
testcase_05 AC 38 ms
53,100 KB
testcase_06 WA -
testcase_07 AC 38 ms
53,180 KB
testcase_08 AC 40 ms
53,240 KB
testcase_09 AC 39 ms
52,820 KB
testcase_10 AC 40 ms
53,728 KB
testcase_11 AC 38 ms
53,856 KB
testcase_12 AC 39 ms
53,136 KB
testcase_13 AC 40 ms
53,320 KB
testcase_14 WA -
testcase_15 AC 38 ms
53,088 KB
testcase_16 AC 38 ms
52,740 KB
testcase_17 AC 40 ms
53,652 KB
testcase_18 AC 40 ms
53,456 KB
testcase_19 AC 40 ms
53,348 KB
testcase_20 AC 40 ms
52,776 KB
testcase_21 AC 39 ms
52,208 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 37 ms
53,132 KB
testcase_25 AC 37 ms
52,364 KB
testcase_26 AC 38 ms
52,800 KB
testcase_27 AC 40 ms
53,892 KB
testcase_28 AC 65 ms
69,924 KB
testcase_29 AC 63 ms
70,424 KB
testcase_30 AC 66 ms
69,408 KB
testcase_31 AC 65 ms
70,696 KB
testcase_32 AC 41 ms
54,004 KB
testcase_33 AC 43 ms
53,816 KB
testcase_34 AC 43 ms
55,516 KB
testcase_35 AC 49 ms
55,800 KB
testcase_36 AC 53 ms
63,384 KB
testcase_37 AC 40 ms
53,900 KB
testcase_38 AC 39 ms
53,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

v,e = map(int, input().split())
s,g = map(int,input().split())
# adj[s]: ノード s に隣接する(ノード, 重み)をリストで持つ
adj = [[] for _ in range(v)]
for i in range(e):
    s, t= map(int, input().split())
    s -= 1
    t -= 1
    adj[s].append((t, 1))
    adj[t].append((s, 1))
    #双方向でないときは下消す
u = int(input())
pp = list(map(int,input().split()))
from heapq import heappush, heappop
INF = 10 ** 9
def dijkstra(s, n): # (始点, ノード数)
    global pp
    before = [-1]*n
    dist = [INF] * n
    hq = [(0, s)] # (distance, node)
    dist[s] = 0
    seen = [False] * n # ノードが確定済みかどうか
    for i in range(len(pp)):
        seen[pp[i] - 1] = True
    while hq:
        v = heappop(hq)[1] # ノードを pop する
        seen[v] = True
        for to, cost in adj[v]: # ノード v に隣接しているノードに対して
            if seen[to] == False and dist[v] + cost < dist[to]:
                before[to] = v
                dist[to] = dist[v] + cost
                heappush(hq, (dist[to], to))
    return dist
QQ = dijkstra(s-2, v)
#print(QQ)
if QQ[g - 1] == INF:
    print("No")
else:
    print("Yes")
0