結果

問題 No.1607 Kth Maximum Card
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-23 14:52:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,284 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 385,416 KB
最終ジャッジ日時 2024-11-29 15:06:15
合計ジャッジ時間 41,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,184 KB
testcase_01 AC 36 ms
55,984 KB
testcase_02 AC 41 ms
54,936 KB
testcase_03 AC 40 ms
54,192 KB
testcase_04 AC 40 ms
54,348 KB
testcase_05 AC 38 ms
55,808 KB
testcase_06 AC 38 ms
55,516 KB
testcase_07 AC 38 ms
54,256 KB
testcase_08 AC 3,302 ms
383,500 KB
testcase_09 AC 2,599 ms
312,640 KB
testcase_10 AC 3,214 ms
385,416 KB
testcase_11 AC 365 ms
131,556 KB
testcase_12 AC 2,429 ms
322,504 KB
testcase_13 AC 248 ms
109,988 KB
testcase_14 AC 284 ms
117,496 KB
testcase_15 AC 2,004 ms
329,048 KB
testcase_16 AC 249 ms
109,160 KB
testcase_17 AC 126 ms
82,176 KB
testcase_18 AC 1,087 ms
293,756 KB
testcase_19 AC 712 ms
198,248 KB
testcase_20 AC 981 ms
293,668 KB
testcase_21 AC 1,023 ms
294,028 KB
testcase_22 AC 2,247 ms
353,688 KB
testcase_23 AC 2,446 ms
353,560 KB
testcase_24 AC 807 ms
227,264 KB
testcase_25 AC 382 ms
134,928 KB
testcase_26 AC 490 ms
160,284 KB
testcase_27 AC 793 ms
226,780 KB
testcase_28 AC 588 ms
182,552 KB
testcase_29 AC 1,798 ms
282,180 KB
testcase_30 TLE -
testcase_31 AC 1,599 ms
290,292 KB
testcase_32 AC 1,057 ms
299,984 KB
testcase_33 AC 1,112 ms
299,808 KB
testcase_34 AC 1,185 ms
284,632 KB
testcase_35 AC 1,152 ms
279,944 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