結果

問題 No.1607 Kth Maximum Card
ユーザー convexineqconvexineq
提出日時 2021-07-16 22:23:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,449 ms / 3,500 ms
コード長 859 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 161,236 KB
最終ジャッジ日時 2024-07-06 09:48:52
合計ジャッジ時間 16,525 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,016 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 36 ms
53,632 KB
testcase_03 AC 37 ms
54,272 KB
testcase_04 AC 36 ms
54,016 KB
testcase_05 AC 38 ms
53,888 KB
testcase_06 AC 37 ms
53,888 KB
testcase_07 AC 37 ms
53,504 KB
testcase_08 AC 1,107 ms
149,888 KB
testcase_09 AC 643 ms
124,720 KB
testcase_10 AC 1,449 ms
161,236 KB
testcase_11 AC 171 ms
88,896 KB
testcase_12 AC 911 ms
142,080 KB
testcase_13 AC 196 ms
83,260 KB
testcase_14 AC 222 ms
86,016 KB
testcase_15 AC 738 ms
121,960 KB
testcase_16 AC 184 ms
83,864 KB
testcase_17 AC 135 ms
78,940 KB
testcase_18 AC 446 ms
103,496 KB
testcase_19 AC 290 ms
92,424 KB
testcase_20 AC 414 ms
99,676 KB
testcase_21 AC 461 ms
100,212 KB
testcase_22 AC 723 ms
136,508 KB
testcase_23 AC 826 ms
136,496 KB
testcase_24 AC 387 ms
93,040 KB
testcase_25 AC 253 ms
86,272 KB
testcase_26 AC 308 ms
89,216 KB
testcase_27 AC 391 ms
93,444 KB
testcase_28 AC 328 ms
90,356 KB
testcase_29 AC 659 ms
111,876 KB
testcase_30 AC 1,398 ms
135,260 KB
testcase_31 AC 673 ms
111,784 KB
testcase_32 AC 206 ms
97,484 KB
testcase_33 AC 193 ms
97,236 KB
testcase_34 AC 237 ms
97,536 KB
testcase_35 AC 208 ms
97,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def check(mid): # mid より大きい辺を使う最小回数
    d = [1000000]*n
    d[0] = 0
    q = deque()
    q.append((0,0))
    while q:
        v,dist = q.popleft()
        if v==n-1:
            return d[v]
        if d[v] > dist: continue
        for u,c in g[v]:
            cost = int(c > mid)
            nd = d[v] + cost
            if nd < d[u]:
                d[u] = nd
                if cost: q.append((u,nd))
                else: q.appendleft((u,nd))
    return 1000000

import sys
readline = sys.stdin.readline
n,m,k = map(int,readline().split())
g = [[] for _ in range(n)]
for _ in range(m):
    u,v,c = map(int,readline().split())
    g[u-1].append((v-1,c))
    g[v-1].append((u-1,c))
ng = -1
ok = 2*10**5+1
while ok-ng>1:
    mid = (ok+ng)//2
    if check(mid) < k: ok = mid
    else: ng = mid
print(ok)
0