結果

問題 No.1607 Kth Maximum Card
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-23 14:52:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,284 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 385,072 KB
最終ジャッジ日時 2024-05-07 02:42:18
合計ジャッジ時間 7,978 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,016 KB
testcase_01 AC 38 ms
53,504 KB
testcase_02 AC 39 ms
53,888 KB
testcase_03 AC 41 ms
53,760 KB
testcase_04 AC 38 ms
54,016 KB
testcase_05 AC 39 ms
53,888 KB
testcase_06 AC 39 ms
54,272 KB
testcase_07 AC 40 ms
53,632 KB
testcase_08 AC 3,130 ms
383,924 KB
testcase_09 AC 2,403 ms
312,552 KB
testcase_10 AC 3,154 ms
385,072 KB
testcase_11 AC 375 ms
130,980 KB
testcase_12 AC 2,537 ms
322,536 KB
testcase_13 AC 250 ms
109,408 KB
testcase_14 AC 303 ms
117,160 KB
testcase_15 AC 2,096 ms
328,920 KB
testcase_16 AC 263 ms
109,156 KB
testcase_17 AC 132 ms
81,920 KB
testcase_18 AC 1,134 ms
293,492 KB
testcase_19 AC 611 ms
197,856 KB
testcase_20 AC 1,042 ms
293,204 KB
testcase_21 AC 1,075 ms
294,064 KB
testcase_22 AC 2,535 ms
353,336 KB
testcase_23 AC 2,675 ms
353,476 KB
testcase_24 AC 869 ms
227,180 KB
testcase_25 AC 393 ms
134,612 KB
testcase_26 AC 516 ms
160,084 KB
testcase_27 AC 815 ms
226,716 KB
testcase_28 AC 669 ms
182,340 KB
testcase_29 AC 1,933 ms
282,212 KB
testcase_30 TLE -
testcase_31 AC 1,760 ms
290,048 KB
testcase_32 AC 1,138 ms
299,864 KB
testcase_33 AC 1,160 ms
299,352 KB
testcase_34 AC 1,234 ms
284,504 KB
testcase_35 AC 1,239 ms
279,252 KB
権限があれば一括ダウンロードができます

ソースコード

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()
            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)
        return dist

    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))
        dist = bfs(0, edge)
        return dist[n-1] < 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