結果
問題 | No.1382 Travel in Mitaru city |
ユーザー | H3PO4 |
提出日時 | 2021-02-07 21:44:30 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 494 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 75,932 KB |
最終ジャッジ日時 | 2024-07-04 15:08:16 |
合計ジャッジ時間 | 38,256 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,948 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,752 KB |
testcase_03 | AC | 28 ms
10,752 KB |
testcase_04 | AC | 28 ms
10,880 KB |
testcase_05 | AC | 29 ms
10,880 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 802 ms
34,424 KB |
testcase_27 | WA | - |
testcase_28 | AC | 808 ms
34,352 KB |
testcase_29 | AC | 815 ms
34,356 KB |
testcase_30 | AC | 827 ms
34,484 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 255 ms
19,904 KB |
testcase_36 | AC | 426 ms
28,600 KB |
testcase_37 | AC | 91 ms
13,696 KB |
testcase_38 | AC | 476 ms
30,548 KB |
testcase_39 | AC | 144 ms
15,800 KB |
testcase_40 | AC | 354 ms
25,660 KB |
testcase_41 | AC | 406 ms
27,408 KB |
testcase_42 | AC | 477 ms
31,044 KB |
testcase_43 | AC | 415 ms
28,188 KB |
testcase_44 | AC | 177 ms
17,780 KB |
testcase_45 | AC | 375 ms
26,640 KB |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | TLE | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
ソースコード
import heapq N, M, S, T = map(int, input().split()) S -= 1 T -= 1 P = tuple(map(int, input().split())) G = [[] for _ in range(N)] for _ in range(M): a, b = (int(x) - 1 for x in input().split()) G[a].append(b) G[b].append(a) h = [(-P[S], S)] nonvisited = [True] * N ans = 0 X = P[S] while h: p, v = heapq.heappop(h) if -p < X: X = -p ans += 1 nonvisited[v] = False for x in G[v]: if nonvisited[x]: h.append((-P[x], x)) print(ans)