結果

問題 No.1382 Travel in Mitaru city
ユーザー Akijin_007Akijin_007
提出日時 2023-08-31 19:55:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 96,840 KB
最終ジャッジ日時 2024-06-11 01:30:57
合計ジャッジ時間 15,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 35 ms
52,864 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 36 ms
53,120 KB
testcase_05 AC 37 ms
52,480 KB
testcase_06 AC 178 ms
81,280 KB
testcase_07 AC 160 ms
81,024 KB
testcase_08 AC 125 ms
78,720 KB
testcase_09 AC 176 ms
82,688 KB
testcase_10 AC 182 ms
81,536 KB
testcase_11 AC 204 ms
87,168 KB
testcase_12 AC 220 ms
87,168 KB
testcase_13 AC 215 ms
87,168 KB
testcase_14 AC 214 ms
87,168 KB
testcase_15 AC 195 ms
86,912 KB
testcase_16 AC 267 ms
94,464 KB
testcase_17 AC 277 ms
94,720 KB
testcase_18 AC 269 ms
94,720 KB
testcase_19 AC 261 ms
94,592 KB
testcase_20 AC 292 ms
94,592 KB
testcase_21 AC 257 ms
94,720 KB
testcase_22 AC 251 ms
94,464 KB
testcase_23 AC 246 ms
94,464 KB
testcase_24 AC 281 ms
94,720 KB
testcase_25 AC 245 ms
94,464 KB
testcase_26 AC 208 ms
94,592 KB
testcase_27 AC 245 ms
94,208 KB
testcase_28 AC 196 ms
94,592 KB
testcase_29 AC 199 ms
94,848 KB
testcase_30 AC 197 ms
94,464 KB
testcase_31 AC 154 ms
91,904 KB
testcase_32 AC 183 ms
94,464 KB
testcase_33 AC 168 ms
93,824 KB
testcase_34 AC 140 ms
87,424 KB
testcase_35 AC 121 ms
83,200 KB
testcase_36 AC 147 ms
91,904 KB
testcase_37 AC 88 ms
77,824 KB
testcase_38 AC 152 ms
93,696 KB
testcase_39 AC 98 ms
79,488 KB
testcase_40 AC 130 ms
88,832 KB
testcase_41 AC 137 ms
90,368 KB
testcase_42 AC 153 ms
93,824 KB
testcase_43 AC 143 ms
92,032 KB
testcase_44 AC 103 ms
81,792 KB
testcase_45 AC 139 ms
90,112 KB
testcase_46 AC 153 ms
82,304 KB
testcase_47 AC 253 ms
95,260 KB
testcase_48 AC 219 ms
88,724 KB
testcase_49 AC 263 ms
96,840 KB
testcase_50 AC 192 ms
86,312 KB
testcase_51 AC 164 ms
91,520 KB
testcase_52 AC 183 ms
93,824 KB
testcase_53 AC 97 ms
79,104 KB
testcase_54 AC 125 ms
83,840 KB
testcase_55 AC 179 ms
93,568 KB
testcase_56 AC 112 ms
81,536 KB
testcase_57 AC 148 ms
88,064 KB
testcase_58 AC 89 ms
77,696 KB
testcase_59 AC 111 ms
81,152 KB
testcase_60 AC 173 ms
93,184 KB
testcase_61 AC 74 ms
72,192 KB
testcase_62 AC 38 ms
52,736 KB
testcase_63 AC 88 ms
76,672 KB
testcase_64 AC 74 ms
75,008 KB
testcase_65 AC 55 ms
63,104 KB
testcase_66 AC 71 ms
72,064 KB
testcase_67 AC 73 ms
72,320 KB
testcase_68 AC 79 ms
76,416 KB
testcase_69 AC 71 ms
71,552 KB
testcase_70 AC 83 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N, M, S, T = map(int, input().split())
p = list(map(int, input().split()))

to = [[] for i in range(N)]
for i in range(M):
    a, b = map(int, input().split())
    to[a-1].append(b-1)
    to[b-1].append(a-1)

S -= 1
T -= 1

import heapq
q = [(-p[S], S)]
X = p[S]
a = []
v = [0] * N
v[S] = 1

heapq.heapify(q)

while q:
    t, x = heapq.heappop(q)
    t *= -1
    qq = [x]
    a.append(t)
    # if x == T:
    #     break

    while qq:
        u = qq.pop()
        for y in to[u]:
            if v[y] == 1:
                continue
            if p[y] >= t:
                qq.append(y)
            else:
                heapq.heappush(q, (-p[y], y))
            v[y] = 1

ans = 0
for i in range(len(a)-1):
    if a[i] > a[i+1]:
        ans += 1

print(ans)












0