結果

問題 No.1473 おでぶなおばけさん
ユーザー lloyzlloyz
提出日時 2022-08-11 22:08:27
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,100 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 848,688 KB
最終ジャッジ日時 2024-09-22 05:08:34
合計ジャッジ時間 20,440 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,584 KB
testcase_01 AC 40 ms
54,560 KB
testcase_02 AC 759 ms
112,436 KB
testcase_03 AC 382 ms
106,836 KB
testcase_04 AC 392 ms
95,672 KB
testcase_05 AC 204 ms
81,692 KB
testcase_06 AC 684 ms
105,436 KB
testcase_07 AC 660 ms
113,756 KB
testcase_08 AC 1,064 ms
108,268 KB
testcase_09 AC 582 ms
109,664 KB
testcase_10 AC 187 ms
87,000 KB
testcase_11 AC 245 ms
87,520 KB
testcase_12 AC 183 ms
87,336 KB
testcase_13 AC 149 ms
81,488 KB
testcase_14 AC 118 ms
79,312 KB
testcase_15 AC 173 ms
83,884 KB
testcase_16 AC 184 ms
82,996 KB
testcase_17 AC 93 ms
77,620 KB
testcase_18 AC 99 ms
77,340 KB
testcase_19 AC 216 ms
85,316 KB
testcase_20 AC 359 ms
101,924 KB
testcase_21 AC 415 ms
93,384 KB
testcase_22 AC 272 ms
110,212 KB
testcase_23 AC 230 ms
108,000 KB
testcase_24 AC 243 ms
104,804 KB
testcase_25 AC 820 ms
102,804 KB
testcase_26 AC 372 ms
106,728 KB
testcase_27 AC 272 ms
83,384 KB
testcase_28 AC 563 ms
112,292 KB
testcase_29 AC 461 ms
98,920 KB
testcase_30 AC 718 ms
101,628 KB
testcase_31 AC 527 ms
114,060 KB
testcase_32 AC 440 ms
104,928 KB
testcase_33 AC 313 ms
98,820 KB
testcase_34 AC 184 ms
91,868 KB
testcase_35 AC 217 ms
86,492 KB
testcase_36 AC 716 ms
91,392 KB
testcase_37 AC 316 ms
107,072 KB
testcase_38 AC 110 ms
77,632 KB
testcase_39 AC 178 ms
85,084 KB
testcase_40 AC 179 ms
85,280 KB
testcase_41 AC 163 ms
87,608 KB
testcase_42 AC 166 ms
87,732 KB
testcase_43 MLE -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque

n, m = map(int, input().split())
edge = defaultdict(list)
for _ in range(m):
    s, t, d = map(int, input().split())
    edge[s].append((t, d))
    edge[t].append((s, d))

left, right = 1, 10**9 + 10
while right - left > 1:
    mid = (left + right) // 2
    flag = False
    Que = deque([1])
    C = [10**18 for _ in range(n + 1)]
    C[1] = 0
    while Que:
        cp = Que.popleft()
        if cp == n:
            flag = True
            break
        cnt = C[cp]
        for np, w in edge[cp]:
            if w < mid:
                continue
            if cnt + 1 > C[np]:
                continue
            C[np] = cnt + 1
            Que.append(np)
    if flag:
        left = mid
    else:
        right = mid

Que = deque([1])
C = [10**18 for _ in range(n + 1)]
C[1] = 0
while Que:
    cp = Que.popleft()
    if cp == n:
        print(left, C[cp])
        break
    cnt = C[cp]
    for np, w in edge[cp]:
        if w < left:
            continue
        if cnt + 1 > C[np]:
            continue
        C[np] = cnt + 1
        Que.append(np)
0