結果

問題 No.1607 Kth Maximum Card
ユーザー rlangevinrlangevin
提出日時 2023-10-04 12:07:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,300 ms / 3,500 ms
コード長 955 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 133,596 KB
最終ジャッジ日時 2024-07-26 14:25:39
合計ジャッジ時間 14,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,600 KB
testcase_01 AC 37 ms
54,508 KB
testcase_02 AC 37 ms
55,440 KB
testcase_03 AC 35 ms
54,596 KB
testcase_04 AC 36 ms
54,528 KB
testcase_05 AC 40 ms
54,120 KB
testcase_06 AC 40 ms
54,352 KB
testcase_07 AC 37 ms
55,048 KB
testcase_08 AC 1,122 ms
129,872 KB
testcase_09 AC 271 ms
103,760 KB
testcase_10 AC 342 ms
109,900 KB
testcase_11 AC 107 ms
84,504 KB
testcase_12 AC 270 ms
102,684 KB
testcase_13 AC 221 ms
83,620 KB
testcase_14 AC 241 ms
86,024 KB
testcase_15 AC 724 ms
116,752 KB
testcase_16 AC 95 ms
81,600 KB
testcase_17 AC 132 ms
78,880 KB
testcase_18 AC 532 ms
100,748 KB
testcase_19 AC 391 ms
92,904 KB
testcase_20 AC 438 ms
95,944 KB
testcase_21 AC 499 ms
98,608 KB
testcase_22 AC 809 ms
132,068 KB
testcase_23 AC 978 ms
133,596 KB
testcase_24 AC 430 ms
92,736 KB
testcase_25 AC 250 ms
87,048 KB
testcase_26 AC 328 ms
88,156 KB
testcase_27 AC 431 ms
92,852 KB
testcase_28 AC 379 ms
89,708 KB
testcase_29 AC 226 ms
95,880 KB
testcase_30 AC 1,300 ms
127,888 KB
testcase_31 AC 774 ms
106,332 KB
testcase_32 AC 231 ms
97,580 KB
testcase_33 AC 250 ms
97,984 KB
testcase_34 AC 361 ms
97,924 KB
testcase_35 AC 247 ms
97,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

from collections import *
def check(m):
    Q = deque()
    inf = 10 ** 18
    dist = [inf] * N
    dist[0] = 0
    Q.append(0)
    while Q:
        u = Q.popleft()
        for v, cost in G[u]:
            if dist[u] >= K and dist[u] != inf:
                return dist[-1] < K
            c = int(cost > m)
            if dist[v] <= dist[u] + c:
                continue
            dist[v] = dist[u] + c
            if c == 0:
                Q.appendleft(v)
            else:
                Q.append(v)

    return dist[-1] < K


if check(0):
    print(0)
    exit()

yes = 2 * 10 ** 5 + 5
no = 0
while yes - no != 1:
    mid = (yes + no)//2
    if check(mid):
        yes = mid
    else:
        no = mid

print(yes)
0