結果

問題 No.1607 Kth Maximum Card
ユーザー rlangevinrlangevin
提出日時 2023-10-04 08:58:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,017 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 401,992 KB
最終ジャッジ日時 2024-07-26 14:19:53
合計ジャッジ時間 7,779 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,292 KB
testcase_01 AC 40 ms
55,168 KB
testcase_02 AC 38 ms
55,240 KB
testcase_03 AC 39 ms
55,436 KB
testcase_04 AC 37 ms
55,068 KB
testcase_05 AC 38 ms
55,184 KB
testcase_06 AC 38 ms
54,796 KB
testcase_07 AC 39 ms
54,508 KB
testcase_08 TLE -
testcase_09 AC 282 ms
124,300 KB
testcase_10 AC 348 ms
135,496 KB
testcase_11 AC 114 ms
89,536 KB
testcase_12 AC 287 ms
122,004 KB
testcase_13 AC 257 ms
106,964 KB
testcase_14 AC 339 ms
129,456 KB
testcase_15 AC 2,112 ms
313,868 KB
testcase_16 AC 101 ms
87,900 KB
testcase_17 AC 114 ms
82,700 KB
testcase_18 AC 1,248 ms
289,856 KB
testcase_19 AC 619 ms
206,336 KB
testcase_20 AC 1,104 ms
291,628 KB
testcase_21 AC 1,026 ms
284,368 KB
testcase_22 AC 2,513 ms
350,320 KB
testcase_23 AC 2,632 ms
349,912 KB
testcase_24 AC 830 ms
221,420 KB
testcase_25 AC 429 ms
136,596 KB
testcase_26 AC 520 ms
166,796 KB
testcase_27 AC 896 ms
242,496 KB
testcase_28 AC 632 ms
181,240 KB
testcase_29 AC 221 ms
110,516 KB
testcase_30 TLE -
testcase_31 AC 1,865 ms
292,440 KB
testcase_32 AC 1,093 ms
291,348 KB
testcase_33 AC 1,246 ms
290,584 KB
testcase_34 AC 1,046 ms
290,324 KB
testcase_35 AC 1,046 ms
291,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

from collections import *
def check(m):
    G = [[] for i in range(N)]
    for u, v, c in Edge:
        if c > m:
            G[u].append((v, 1))
            G[v].append((u, 1))
        else:
            G[u].append((v, 0))
            G[v].append((u, 0))

    Q = deque()
    inf = 10 ** 18
    dist = [inf] * N
    dist[0] = 0
    Q.append(0)
    while Q:
        u = Q.popleft()
        for v, c in G[u]:
            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