結果

問題 No.1473 おでぶなおばけさん
ユーザー terasaterasa
提出日時 2022-06-02 22:54:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 989 ms / 2,000 ms
コード長 1,431 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 110,524 KB
最終ジャッジ日時 2024-09-21 02:10:47
合計ジャッジ時間 15,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,856 KB
testcase_01 AC 44 ms
55,812 KB
testcase_02 AC 572 ms
103,112 KB
testcase_03 AC 347 ms
102,864 KB
testcase_04 AC 410 ms
92,960 KB
testcase_05 AC 174 ms
80,384 KB
testcase_06 AC 661 ms
99,424 KB
testcase_07 AC 635 ms
102,588 KB
testcase_08 AC 989 ms
102,832 KB
testcase_09 AC 543 ms
104,328 KB
testcase_10 AC 142 ms
83,604 KB
testcase_11 AC 162 ms
83,584 KB
testcase_12 AC 144 ms
83,460 KB
testcase_13 AC 115 ms
80,028 KB
testcase_14 AC 99 ms
79,984 KB
testcase_15 AC 136 ms
83,156 KB
testcase_16 AC 134 ms
83,152 KB
testcase_17 AC 72 ms
75,252 KB
testcase_18 AC 80 ms
77,604 KB
testcase_19 AC 173 ms
84,684 KB
testcase_20 AC 342 ms
98,612 KB
testcase_21 AC 344 ms
92,848 KB
testcase_22 AC 218 ms
106,016 KB
testcase_23 AC 183 ms
103,532 KB
testcase_24 AC 192 ms
101,664 KB
testcase_25 AC 504 ms
104,756 KB
testcase_26 AC 279 ms
103,672 KB
testcase_27 AC 158 ms
81,888 KB
testcase_28 AC 466 ms
110,524 KB
testcase_29 AC 390 ms
94,096 KB
testcase_30 AC 582 ms
96,664 KB
testcase_31 AC 454 ms
110,132 KB
testcase_32 AC 464 ms
100,740 KB
testcase_33 AC 259 ms
95,812 KB
testcase_34 AC 149 ms
87,320 KB
testcase_35 AC 177 ms
87,536 KB
testcase_36 AC 344 ms
90,916 KB
testcase_37 AC 222 ms
100,544 KB
testcase_38 AC 90 ms
78,248 KB
testcase_39 AC 129 ms
82,944 KB
testcase_40 AC 129 ms
82,984 KB
testcase_41 AC 123 ms
86,348 KB
testcase_42 AC 123 ms
86,244 KB
testcase_43 AC 172 ms
95,956 KB
testcase_44 AC 170 ms
96,360 KB
testcase_45 AC 174 ms
96,032 KB
testcase_46 AC 247 ms
96,028 KB
testcase_47 AC 348 ms
101,092 KB
testcase_48 AC 366 ms
101,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


N, M = map(int, input().split())
E = [[] for _ in range(N)]
for _ in range(M):
    s, t, d = map(int, input().split())
    s -= 1
    t -= 1
    E[s].append((d, t))
    E[t].append((d, s))

INF = 1 << 30
l = -1
r = INF
while r - l > 1:
    w = (l + r) // 2

    dq = deque([0])
    C = [INF] * N
    C[0] = 0
    while len(dq) > 0:
        v = dq.popleft()
        if v == N - 1:
            break
        for d, dest in E[v]:
            if w > d:
                continue
            if C[dest] > C[v] + 1:
                C[dest] = C[v] + 1
                dq.append(dest)
    if C[N - 1] < INF:
        l = w
        ans = C[N - 1]
    else:
        r = w
print(l, ans)
0