結果

問題 No.1382 Travel in Mitaru city
ユーザー rlangevinrlangevin
提出日時 2023-04-13 12:45:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 659 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 96,040 KB
最終ジャッジ日時 2024-10-09 11:00:59
合計ジャッジ時間 18,971 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,096 KB
testcase_01 AC 40 ms
53,680 KB
testcase_02 AC 38 ms
53,016 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,464 KB
testcase_05 AC 38 ms
52,468 KB
testcase_06 WA -
testcase_07 AC 213 ms
82,376 KB
testcase_08 AC 186 ms
79,528 KB
testcase_09 AC 253 ms
84,704 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 276 ms
86,976 KB
testcase_15 WA -
testcase_16 AC 353 ms
94,100 KB
testcase_17 AC 391 ms
94,368 KB
testcase_18 AC 394 ms
93,888 KB
testcase_19 WA -
testcase_20 AC 384 ms
94,144 KB
testcase_21 AC 357 ms
94,528 KB
testcase_22 AC 396 ms
94,284 KB
testcase_23 AC 415 ms
93,892 KB
testcase_24 AC 400 ms
94,076 KB
testcase_25 AC 348 ms
93,868 KB
testcase_26 AC 379 ms
93,908 KB
testcase_27 AC 409 ms
94,212 KB
testcase_28 AC 371 ms
93,964 KB
testcase_29 AC 392 ms
93,824 KB
testcase_30 AC 347 ms
94,520 KB
testcase_31 AC 166 ms
91,316 KB
testcase_32 AC 190 ms
93,624 KB
testcase_33 AC 181 ms
93,296 KB
testcase_34 AC 144 ms
86,700 KB
testcase_35 AC 120 ms
83,272 KB
testcase_36 AC 129 ms
91,212 KB
testcase_37 AC 74 ms
77,828 KB
testcase_38 AC 135 ms
93,392 KB
testcase_39 AC 81 ms
79,808 KB
testcase_40 AC 113 ms
88,072 KB
testcase_41 AC 116 ms
89,864 KB
testcase_42 AC 130 ms
93,492 KB
testcase_43 AC 124 ms
91,280 KB
testcase_44 AC 86 ms
82,324 KB
testcase_45 AC 120 ms
89,748 KB
testcase_46 AC 160 ms
82,248 KB
testcase_47 AC 322 ms
95,620 KB
testcase_48 AC 243 ms
90,408 KB
testcase_49 AC 330 ms
96,040 KB
testcase_50 AC 194 ms
85,820 KB
testcase_51 AC 156 ms
90,964 KB
testcase_52 AC 177 ms
93,844 KB
testcase_53 AC 94 ms
79,596 KB
testcase_54 AC 114 ms
84,736 KB
testcase_55 AC 163 ms
93,152 KB
testcase_56 AC 97 ms
82,184 KB
testcase_57 AC 134 ms
87,572 KB
testcase_58 AC 83 ms
77,888 KB
testcase_59 AC 101 ms
81,748 KB
testcase_60 AC 173 ms
92,812 KB
testcase_61 WA -
testcase_62 AC 40 ms
53,624 KB
testcase_63 AC 152 ms
78,784 KB
testcase_64 WA -
testcase_65 AC 63 ms
69,200 KB
testcase_66 AC 112 ms
77,248 KB
testcase_67 AC 117 ms
77,212 KB
testcase_68 AC 123 ms
77,768 KB
testcase_69 WA -
testcase_70 AC 126 ms
77,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from heapq import *

N, M, S, T = map(int, readline().split())
S, T = S - 1, T - 1
P = list(map(int, readline().split()))
G = [[] for i in range(N)]
for i in range(M):
    A, B = map(int, readline().split())
    A, B = A - 1, B - 1
    G[A].append(B)
    G[B].append(A)

Q = []
Q.append((-P[S], S))
ans = -1
now = 10 ** 18
seen = [0] * N
while Q:
    c, u = heappop(Q)
    c = -c
    if seen[u]:
        continue
    seen[u] = 1
    if c < now:
        ans += 1
        now = c
        if u == T:
            break
    for v in G[u]:
        if seen[v]:
            continue
        heappush(Q, (-P[v], v))

print(ans)
0