結果

問題 No.1607 Kth Maximum Card
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-23 14:54:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,311 bytes
コンパイル時間 663 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 383,364 KB
最終ジャッジ日時 2024-05-07 02:46:03
合計ジャッジ時間 44,604 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,828 KB
testcase_01 AC 44 ms
54,144 KB
testcase_02 AC 45 ms
53,760 KB
testcase_03 AC 45 ms
54,272 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 48 ms
54,016 KB
testcase_06 AC 45 ms
54,400 KB
testcase_07 AC 45 ms
54,016 KB
testcase_08 TLE -
testcase_09 AC 2,694 ms
338,368 KB
testcase_10 TLE -
testcase_11 AC 391 ms
127,356 KB
testcase_12 AC 3,193 ms
302,440 KB
testcase_13 AC 311 ms
109,444 KB
testcase_14 AC 372 ms
116,136 KB
testcase_15 AC 2,761 ms
305,244 KB
testcase_16 AC 310 ms
108,708 KB
testcase_17 AC 148 ms
82,176 KB
testcase_18 AC 1,448 ms
293,240 KB
testcase_19 AC 752 ms
194,984 KB
testcase_20 AC 1,347 ms
292,452 KB
testcase_21 AC 1,364 ms
292,172 KB
testcase_22 AC 3,274 ms
349,488 KB
testcase_23 AC 3,475 ms
351,576 KB
testcase_24 AC 1,187 ms
222,664 KB
testcase_25 AC 552 ms
133,216 KB
testcase_26 AC 716 ms
158,028 KB
testcase_27 AC 1,267 ms
222,092 KB
testcase_28 AC 889 ms
180,120 KB
testcase_29 AC 2,695 ms
301,060 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

from collections import deque
INF = 10**18

def main():
    n, m, k = map(int, input().split())
    E = []
    for i in range(m):
        u, v, c = map(int, input().split())
        u, v = u-1, v-1
        E.append((u, v, c))


    def bfs(s, edge):
        q = deque([])
        q.append(0)
        dist = [INF]*n
        dist[0] = 0
        while q:
            v = q.popleft()
            if v == n-1:
                return dist[n-1]
            for c, nv in edge[v]:
                if dist[v]+c < dist[nv]:
                    dist[nv] = dist[v]+c
                    if c == 0:
                        q.appendleft(nv)
                    else:
                        q.append(nv)

    def is_ok(x):
        edge = [[] for i in range(n)]
        for u, v, c in E:
            if c > x:
                edge[u].append((1, v))
                edge[v].append((1, u))
            else:
                edge[u].append((0, v))
                edge[v].append((0, u))
        d = bfs(0, edge)
        return d < k

    ng = -1
    ok = 2*10**5+50
    while ng+1 < ok:
        mid = (ng+ok)//2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    print(ok)

if __name__ == '__main__':
    main()
0