結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,132 KB
testcase_01 AC 41 ms
54,748 KB
testcase_02 AC 794 ms
112,312 KB
testcase_03 AC 451 ms
106,324 KB
testcase_04 AC 475 ms
95,408 KB
testcase_05 AC 204 ms
81,884 KB
testcase_06 AC 786 ms
104,680 KB
testcase_07 AC 724 ms
111,976 KB
testcase_08 AC 1,162 ms
108,160 KB
testcase_09 AC 611 ms
108,788 KB
testcase_10 AC 198 ms
86,856 KB
testcase_11 AC 247 ms
87,336 KB
testcase_12 AC 199 ms
87,468 KB
testcase_13 AC 156 ms
81,352 KB
testcase_14 AC 124 ms
78,784 KB
testcase_15 AC 183 ms
83,772 KB
testcase_16 AC 189 ms
83,260 KB
testcase_17 AC 93 ms
77,484 KB
testcase_18 AC 104 ms
77,536 KB
testcase_19 AC 235 ms
85,272 KB
testcase_20 AC 382 ms
101,936 KB
testcase_21 AC 487 ms
93,524 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 950 ms
102,620 KB
testcase_26 AC 397 ms
105,956 KB
testcase_27 AC 286 ms
83,192 KB
testcase_28 AC 612 ms
112,028 KB
testcase_29 AC 541 ms
98,280 KB
testcase_30 AC 846 ms
99,280 KB
testcase_31 AC 537 ms
113,920 KB
testcase_32 AC 515 ms
104,040 KB
testcase_33 AC 328 ms
98,668 KB
testcase_34 AC 181 ms
90,336 KB
testcase_35 AC 212 ms
86,372 KB
testcase_36 AC 734 ms
91,096 KB
testcase_37 AC 319 ms
106,372 KB
testcase_38 AC 110 ms
77,932 KB
testcase_39 AC 176 ms
83,052 KB
testcase_40 AC 176 ms
82,988 KB
testcase_41 AC 166 ms
87,740 KB
testcase_42 AC 169 ms
87,804 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
ans = -1
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
            ans = C[cp]
            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
print(left, ans)
0