結果

問題 No.1382 Travel in Mitaru city
ユーザー tobusakanatobusakana
提出日時 2022-12-01 21:31:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 489 ms / 2,000 ms
コード長 834 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 96,060 KB
最終ジャッジ日時 2024-10-09 02:14:46
合計ジャッジ時間 19,210 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 42 ms
52,480 KB
testcase_05 AC 49 ms
52,096 KB
testcase_06 AC 289 ms
84,096 KB
testcase_07 AC 260 ms
82,432 KB
testcase_08 AC 228 ms
79,616 KB
testcase_09 AC 303 ms
84,736 KB
testcase_10 AC 273 ms
84,480 KB
testcase_11 AC 320 ms
86,784 KB
testcase_12 AC 368 ms
86,992 KB
testcase_13 AC 431 ms
88,372 KB
testcase_14 AC 300 ms
86,784 KB
testcase_15 AC 362 ms
86,716 KB
testcase_16 AC 410 ms
93,824 KB
testcase_17 AC 462 ms
93,696 KB
testcase_18 AC 438 ms
93,696 KB
testcase_19 AC 388 ms
93,696 KB
testcase_20 AC 417 ms
93,696 KB
testcase_21 AC 450 ms
94,080 KB
testcase_22 AC 489 ms
93,568 KB
testcase_23 AC 452 ms
94,208 KB
testcase_24 AC 433 ms
93,696 KB
testcase_25 AC 386 ms
94,080 KB
testcase_26 AC 419 ms
93,568 KB
testcase_27 AC 442 ms
93,824 KB
testcase_28 AC 415 ms
93,568 KB
testcase_29 AC 422 ms
94,080 KB
testcase_30 AC 393 ms
93,696 KB
testcase_31 AC 194 ms
91,264 KB
testcase_32 AC 217 ms
93,568 KB
testcase_33 AC 203 ms
93,312 KB
testcase_34 AC 163 ms
86,656 KB
testcase_35 AC 143 ms
83,472 KB
testcase_36 AC 148 ms
91,136 KB
testcase_37 AC 89 ms
77,952 KB
testcase_38 AC 152 ms
93,312 KB
testcase_39 AC 95 ms
80,128 KB
testcase_40 AC 129 ms
88,320 KB
testcase_41 AC 136 ms
89,472 KB
testcase_42 AC 151 ms
93,184 KB
testcase_43 AC 142 ms
91,648 KB
testcase_44 AC 102 ms
81,536 KB
testcase_45 AC 137 ms
89,216 KB
testcase_46 AC 178 ms
82,176 KB
testcase_47 AC 351 ms
95,576 KB
testcase_48 AC 284 ms
90,536 KB
testcase_49 AC 371 ms
96,060 KB
testcase_50 AC 218 ms
85,640 KB
testcase_51 AC 186 ms
91,136 KB
testcase_52 AC 204 ms
93,056 KB
testcase_53 AC 112 ms
79,616 KB
testcase_54 AC 137 ms
84,736 KB
testcase_55 AC 197 ms
93,184 KB
testcase_56 AC 118 ms
81,920 KB
testcase_57 AC 157 ms
87,552 KB
testcase_58 AC 99 ms
77,696 KB
testcase_59 AC 120 ms
81,280 KB
testcase_60 AC 197 ms
92,928 KB
testcase_61 AC 130 ms
77,568 KB
testcase_62 AC 43 ms
52,736 KB
testcase_63 AC 198 ms
78,564 KB
testcase_64 AC 151 ms
77,312 KB
testcase_65 AC 73 ms
67,968 KB
testcase_66 AC 145 ms
76,996 KB
testcase_67 AC 145 ms
77,184 KB
testcase_68 AC 143 ms
77,440 KB
testcase_69 AC 140 ms
77,184 KB
testcase_70 AC 163 ms
77,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 常に、今まで訪れた頂点集合からいける場所のうち最も数値が小さい場所に移動する。
# heapqに、(行ける場所の数値)を入れて移動する

import sys
readline = sys.stdin.readline
N,M,S,T = map(int,readline().split())
S -= 1
T -= 1
P = list(map(int,readline().split()))
G = [[] for i in range(N)]
for _ in range(M):
    a,b = map(int,readline().split())
    G[a - 1].append(b - 1)
    G[b - 1].append(a - 1)

import heapq as hq
q = []
hq.heappush(q, (-P[S], S))
visited = [False] * N
X = P[S]
ans = 0
while q:
    p, v = hq.heappop(q)
    p *= (-1)
    if visited[v]:
        continue
    visited[v] = True
    if p < X:
        ans += 1
        X = p
    for child in G[v]:
        if visited[child]:
            continue
        hq.heappush(q, (-P[child], child))
        
print(ans)


0