結果

問題 No.1473 おでぶなおばけさん
ユーザー lloyzlloyz
提出日時 2022-08-11 22:25:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,283 ms / 2,000 ms
コード長 1,280 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 176,120 KB
最終ジャッジ日時 2024-09-22 05:19:57
合計ジャッジ時間 18,972 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,076 KB
testcase_01 AC 40 ms
54,692 KB
testcase_02 AC 858 ms
159,928 KB
testcase_03 AC 392 ms
109,928 KB
testcase_04 AC 515 ms
122,684 KB
testcase_05 AC 213 ms
89,412 KB
testcase_06 AC 733 ms
130,764 KB
testcase_07 AC 751 ms
149,668 KB
testcase_08 AC 1,283 ms
176,120 KB
testcase_09 AC 608 ms
133,816 KB
testcase_10 AC 142 ms
83,624 KB
testcase_11 AC 167 ms
83,776 KB
testcase_12 AC 135 ms
83,680 KB
testcase_13 AC 113 ms
80,272 KB
testcase_14 AC 93 ms
79,596 KB
testcase_15 AC 132 ms
83,416 KB
testcase_16 AC 134 ms
82,840 KB
testcase_17 AC 75 ms
76,920 KB
testcase_18 AC 82 ms
77,548 KB
testcase_19 AC 184 ms
85,808 KB
testcase_20 AC 369 ms
109,372 KB
testcase_21 AC 394 ms
114,676 KB
testcase_22 AC 221 ms
115,572 KB
testcase_23 AC 201 ms
112,716 KB
testcase_24 AC 205 ms
104,764 KB
testcase_25 AC 1,052 ms
158,640 KB
testcase_26 AC 396 ms
119,504 KB
testcase_27 AC 244 ms
88,368 KB
testcase_28 AC 581 ms
143,296 KB
testcase_29 AC 452 ms
127,440 KB
testcase_30 AC 739 ms
150,576 KB
testcase_31 AC 559 ms
134,332 KB
testcase_32 AC 453 ms
121,168 KB
testcase_33 AC 307 ms
110,836 KB
testcase_34 AC 165 ms
89,944 KB
testcase_35 AC 198 ms
92,700 KB
testcase_36 AC 487 ms
119,440 KB
testcase_37 AC 284 ms
111,156 KB
testcase_38 AC 93 ms
78,424 KB
testcase_39 AC 124 ms
82,700 KB
testcase_40 AC 129 ms
82,692 KB
testcase_41 AC 124 ms
86,852 KB
testcase_42 AC 123 ms
86,472 KB
testcase_43 AC 245 ms
137,240 KB
testcase_44 AC 240 ms
137,356 KB
testcase_45 AC 242 ms
137,244 KB
testcase_46 AC 396 ms
133,288 KB
testcase_47 AC 482 ms
143,084 KB
testcase_48 AC 491 ms
142,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = sys.stdin.readline
INF = 1 << 30

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

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

Que = deque([0])
seen = set([0])
C = [INF] * n
C[0] = 0
while Que:
    cp = Que.popleft()
    if cp == n - 1:
        print(left, C[cp])
        break
    cnt = C[cp]
    for np, w in edge[cp]:
        if w < left:
            continue
        if cnt + 1 > C[np]:
            continue
        if np in seen:
            continue
        seen.add(np)
        C[np] = cnt + 1
        Que.append(np)

0