結果

問題 No.1382 Travel in Mitaru city
ユーザー rlangevinrlangevin
提出日時 2023-04-13 12:47:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 96,104 KB
最終ジャッジ日時 2024-10-09 11:02:14
合計ジャッジ時間 18,461 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
52,992 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
52,736 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 283 ms
84,680 KB
testcase_07 AC 223 ms
82,048 KB
testcase_08 AC 205 ms
79,360 KB
testcase_09 AC 269 ms
84,728 KB
testcase_10 AC 265 ms
84,608 KB
testcase_11 AC 310 ms
86,784 KB
testcase_12 AC 374 ms
87,236 KB
testcase_13 AC 395 ms
87,524 KB
testcase_14 AC 284 ms
86,656 KB
testcase_15 AC 341 ms
86,820 KB
testcase_16 AC 399 ms
93,696 KB
testcase_17 AC 447 ms
93,952 KB
testcase_18 AC 415 ms
93,952 KB
testcase_19 AC 361 ms
93,696 KB
testcase_20 AC 389 ms
93,696 KB
testcase_21 AC 367 ms
93,952 KB
testcase_22 AC 425 ms
93,696 KB
testcase_23 AC 425 ms
93,696 KB
testcase_24 AC 412 ms
93,952 KB
testcase_25 AC 366 ms
93,952 KB
testcase_26 AC 386 ms
93,696 KB
testcase_27 AC 439 ms
93,952 KB
testcase_28 AC 419 ms
93,824 KB
testcase_29 AC 403 ms
93,952 KB
testcase_30 AC 370 ms
93,888 KB
testcase_31 AC 167 ms
91,448 KB
testcase_32 AC 223 ms
93,696 KB
testcase_33 AC 206 ms
93,056 KB
testcase_34 AC 158 ms
86,912 KB
testcase_35 AC 134 ms
83,124 KB
testcase_36 AC 132 ms
91,656 KB
testcase_37 AC 74 ms
78,356 KB
testcase_38 AC 141 ms
93,460 KB
testcase_39 AC 80 ms
79,744 KB
testcase_40 AC 115 ms
88,192 KB
testcase_41 AC 118 ms
90,240 KB
testcase_42 AC 132 ms
93,824 KB
testcase_43 AC 126 ms
91,392 KB
testcase_44 AC 91 ms
81,692 KB
testcase_45 AC 119 ms
89,596 KB
testcase_46 AC 164 ms
82,432 KB
testcase_47 AC 353 ms
96,104 KB
testcase_48 AC 272 ms
90,308 KB
testcase_49 AC 355 ms
95,996 KB
testcase_50 AC 216 ms
85,640 KB
testcase_51 AC 181 ms
90,880 KB
testcase_52 AC 201 ms
93,056 KB
testcase_53 AC 100 ms
79,616 KB
testcase_54 AC 129 ms
84,608 KB
testcase_55 AC 190 ms
93,056 KB
testcase_56 AC 107 ms
81,792 KB
testcase_57 AC 155 ms
87,424 KB
testcase_58 AC 85 ms
77,696 KB
testcase_59 AC 112 ms
81,280 KB
testcase_60 AC 191 ms
92,800 KB
testcase_61 AC 110 ms
77,128 KB
testcase_62 AC 40 ms
52,608 KB
testcase_63 AC 155 ms
78,280 KB
testcase_64 AC 117 ms
77,256 KB
testcase_65 AC 68 ms
68,224 KB
testcase_66 AC 117 ms
77,568 KB
testcase_67 AC 117 ms
77,568 KB
testcase_68 AC 121 ms
77,568 KB
testcase_69 AC 115 ms
76,672 KB
testcase_70 AC 132 ms
77,680 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
    for v in G[u]:
        if seen[v]:
            continue
        heappush(Q, (-P[v], v))

print(ans)
0