結果

問題 No.1607 Kth Maximum Card
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-08-14 13:04:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,896 ms / 3,500 ms
コード長 788 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 144,132 KB
最終ジャッジ日時 2024-10-05 05:20:57
合計ジャッジ時間 21,987 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,888 KB
testcase_01 AC 41 ms
53,504 KB
testcase_02 AC 41 ms
54,016 KB
testcase_03 AC 39 ms
53,760 KB
testcase_04 AC 39 ms
53,888 KB
testcase_05 AC 38 ms
53,888 KB
testcase_06 AC 39 ms
54,144 KB
testcase_07 AC 39 ms
53,632 KB
testcase_08 AC 1,603 ms
130,476 KB
testcase_09 AC 1,375 ms
125,128 KB
testcase_10 AC 1,896 ms
144,132 KB
testcase_11 AC 285 ms
87,552 KB
testcase_12 AC 1,479 ms
120,928 KB
testcase_13 AC 232 ms
84,388 KB
testcase_14 AC 249 ms
86,016 KB
testcase_15 AC 951 ms
118,472 KB
testcase_16 AC 213 ms
84,224 KB
testcase_17 AC 142 ms
79,104 KB
testcase_18 AC 588 ms
101,980 KB
testcase_19 AC 360 ms
91,520 KB
testcase_20 AC 491 ms
95,108 KB
testcase_21 AC 514 ms
97,120 KB
testcase_22 AC 835 ms
127,460 KB
testcase_23 AC 857 ms
129,244 KB
testcase_24 AC 458 ms
91,764 KB
testcase_25 AC 301 ms
86,656 KB
testcase_26 AC 356 ms
88,320 KB
testcase_27 AC 462 ms
92,448 KB
testcase_28 AC 376 ms
89,908 KB
testcase_29 AC 775 ms
105,716 KB
testcase_30 AC 1,609 ms
130,084 KB
testcase_31 AC 765 ms
103,480 KB
testcase_32 AC 361 ms
99,840 KB
testcase_33 AC 360 ms
99,968 KB
testcase_34 AC 361 ms
99,968 KB
testcase_35 AC 364 ms
99,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


n, m, k = map(int, input().split())
G = [[] for i in range(n)]
for _ in range(m):
    u, v, c = map(int, input().split())
    u -= 1; v -= 1
    G[u].append((v, c))
    G[v].append((u, c))
def ok(x):
    Q = deque([0])
    d = [-1] * n
    d[0] = 0
    while Q:
        u = Q.popleft()
        for v, c in G[u]:
            if c > x:
                if d[v] == -1 or (d[u] != -1 and d[v] > d[u] + 1):
                    d[v] = d[u] + 1
                    Q.append(v)
            else:
                if d[v] == -1 or (d[u] != -1 and d[v] > d[u]):
                    d[v] = d[u]
                    Q.appendleft(v)
    return d[-1] < k
l, r = -1, 10 ** 6
while r - l > 1:
    M = (l + r) // 2
    if ok(M):
        r = M
    else:
        l = M
print(r)
0