結果

問題 No.1607 Kth Maximum Card
ユーザー H3PO4H3PO4
提出日時 2023-03-31 13:59:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,046 ms / 3,500 ms
コード長 823 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 142,632 KB
最終ジャッジ日時 2024-09-22 18:27:44
合計ジャッジ時間 24,859 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,504 KB
testcase_01 AC 42 ms
54,016 KB
testcase_02 AC 41 ms
53,888 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 AC 41 ms
54,016 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 41 ms
54,004 KB
testcase_07 AC 42 ms
53,632 KB
testcase_08 AC 2,006 ms
136,188 KB
testcase_09 AC 1,551 ms
126,300 KB
testcase_10 AC 2,020 ms
142,632 KB
testcase_11 AC 302 ms
87,820 KB
testcase_12 AC 1,586 ms
123,864 KB
testcase_13 AC 228 ms
83,884 KB
testcase_14 AC 260 ms
85,460 KB
testcase_15 AC 969 ms
120,332 KB
testcase_16 AC 206 ms
83,072 KB
testcase_17 AC 130 ms
78,336 KB
testcase_18 AC 598 ms
101,024 KB
testcase_19 AC 370 ms
91,264 KB
testcase_20 AC 553 ms
95,668 KB
testcase_21 AC 548 ms
95,860 KB
testcase_22 AC 1,185 ms
134,580 KB
testcase_23 AC 930 ms
130,104 KB
testcase_24 AC 491 ms
91,344 KB
testcase_25 AC 279 ms
86,144 KB
testcase_26 AC 376 ms
87,808 KB
testcase_27 AC 549 ms
92,472 KB
testcase_28 AC 427 ms
88,696 KB
testcase_29 AC 1,058 ms
107,132 KB
testcase_30 AC 2,046 ms
133,288 KB
testcase_31 AC 972 ms
105,308 KB
testcase_32 AC 256 ms
93,204 KB
testcase_33 AC 261 ms
93,376 KB
testcase_34 AC 357 ms
94,124 KB
testcase_35 AC 256 ms
93,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

input = sys.stdin.buffer.readline

N, M, K = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    u, v, c = map(int, input().split())
    u -= 1
    v -= 1
    G[u].append((v, c))
    G[v].append((u, c))

INF = 2 * 10 ** 5 + 1


def is_possible(m: int):
    d = deque([0])
    dist = [INF] * N
    dist[0] = 0
    while d:
        v = d.pop()
        for x, c in G[v]:
            dx = dist[v]
            if c >= m: dx += 1

            if dist[x] <= dx:
                continue
            dist[x] = dx
            if c >= m:
                d.appendleft(x)
            else:
                d.append(x)
    return dist[N - 1] < K


l, r = 0, INF
while r - l > 1:
    m = (r + l) // 2
    if is_possible(m):
        r = m
    else:
        l = m
print(l)
0