結果

問題 No.1607 Kth Maximum Card
ユーザー rlangevinrlangevin
提出日時 2023-10-04 12:16:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,851 ms / 3,500 ms
コード長 951 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 134,896 KB
最終ジャッジ日時 2024-07-26 14:31:11
合計ジャッジ時間 19,909 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,400 KB
testcase_01 AC 41 ms
54,272 KB
testcase_02 AC 41 ms
54,016 KB
testcase_03 AC 41 ms
54,144 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 42 ms
53,760 KB
testcase_07 AC 42 ms
54,144 KB
testcase_08 AC 1,520 ms
132,452 KB
testcase_09 AC 351 ms
103,680 KB
testcase_10 AC 463 ms
109,952 KB
testcase_11 AC 135 ms
84,352 KB
testcase_12 AC 370 ms
102,912 KB
testcase_13 AC 263 ms
83,584 KB
testcase_14 AC 326 ms
85,760 KB
testcase_15 AC 1,028 ms
118,156 KB
testcase_16 AC 109 ms
81,988 KB
testcase_17 AC 149 ms
79,008 KB
testcase_18 AC 729 ms
101,652 KB
testcase_19 AC 501 ms
92,928 KB
testcase_20 AC 573 ms
96,436 KB
testcase_21 AC 655 ms
99,720 KB
testcase_22 AC 1,189 ms
132,324 KB
testcase_23 AC 1,436 ms
134,896 KB
testcase_24 AC 663 ms
92,220 KB
testcase_25 AC 356 ms
85,896 KB
testcase_26 AC 485 ms
88,560 KB
testcase_27 AC 686 ms
92,420 KB
testcase_28 AC 531 ms
88,968 KB
testcase_29 AC 291 ms
96,116 KB
testcase_30 AC 1,851 ms
130,588 KB
testcase_31 AC 1,194 ms
106,632 KB
testcase_32 AC 285 ms
97,772 KB
testcase_33 AC 293 ms
97,992 KB
testcase_34 AC 405 ms
97,824 KB
testcase_35 AC 302 ms
97,664 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()
        d = dist[u]
        for v, cost in G[u]:
            if d >= K and d != inf:
                return dist[-1] < K
            c = int(cost > m)
            if dist[v] <= d + c:
                continue
            dist[v] = d + 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