結果

問題 No.1607 Kth Maximum Card
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-17 10:34:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,842 ms / 3,500 ms
コード長 734 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 189,312 KB
最終ジャッジ日時 2024-07-06 22:11:26
合計ジャッジ時間 20,613 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 35 ms
53,632 KB
testcase_02 AC 37 ms
53,888 KB
testcase_03 AC 36 ms
53,760 KB
testcase_04 AC 36 ms
53,760 KB
testcase_05 AC 35 ms
54,016 KB
testcase_06 AC 34 ms
53,632 KB
testcase_07 AC 36 ms
53,760 KB
testcase_08 AC 1,277 ms
151,744 KB
testcase_09 AC 1,388 ms
162,816 KB
testcase_10 AC 1,842 ms
189,312 KB
testcase_11 AC 309 ms
92,080 KB
testcase_12 AC 1,369 ms
161,752 KB
testcase_13 AC 210 ms
83,584 KB
testcase_14 AC 245 ms
85,888 KB
testcase_15 AC 763 ms
120,960 KB
testcase_16 AC 193 ms
84,096 KB
testcase_17 AC 136 ms
78,848 KB
testcase_18 AC 526 ms
105,620 KB
testcase_19 AC 346 ms
93,280 KB
testcase_20 AC 482 ms
100,096 KB
testcase_21 AC 476 ms
101,092 KB
testcase_22 AC 843 ms
136,832 KB
testcase_23 AC 910 ms
136,856 KB
testcase_24 AC 424 ms
94,672 KB
testcase_25 AC 246 ms
86,144 KB
testcase_26 AC 312 ms
89,472 KB
testcase_27 AC 459 ms
94,692 KB
testcase_28 AC 361 ms
91,448 KB
testcase_29 AC 781 ms
116,824 KB
testcase_30 AC 1,323 ms
131,504 KB
testcase_31 AC 792 ms
112,896 KB
testcase_32 AC 302 ms
100,616 KB
testcase_33 AC 307 ms
100,660 KB
testcase_34 AC 376 ms
100,864 KB
testcase_35 AC 298 ms
100,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

def search(x):
    dis = [k+1]*n
    dis[0] = 0
    q = deque([[0,0]])
    while q:
        now,cost = q.popleft()
        for nex,c in e[now]:
            d = int(c > x)
            if dis[nex] > cost + d:
                dis[nex] = cost+d
                if d:
                    q.append([nex,cost+d])
                else:
                    q.appendleft([nex,cost])
    return dis[-1] < k


l = -1
r = 2*10**5+5

while r > l + 1:
    m = (r+l)//2
    if search(m):
        r = m
    else:
        l = m
print(r)
0