結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,376 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 47 ms
53,888 KB
testcase_04 AC 43 ms
54,016 KB
testcase_05 AC 44 ms
54,016 KB
testcase_06 AC 45 ms
53,632 KB
testcase_07 AC 45 ms
53,760 KB
testcase_08 AC 1,758 ms
149,564 KB
testcase_09 AC 2,247 ms
162,944 KB
testcase_10 AC 2,864 ms
189,312 KB
testcase_11 AC 482 ms
91,684 KB
testcase_12 AC 2,171 ms
161,700 KB
testcase_13 AC 281 ms
83,396 KB
testcase_14 AC 318 ms
85,944 KB
testcase_15 AC 1,196 ms
121,936 KB
testcase_16 AC 267 ms
84,100 KB
testcase_17 AC 179 ms
78,848 KB
testcase_18 AC 780 ms
105,240 KB
testcase_19 AC 477 ms
92,544 KB
testcase_20 AC 668 ms
100,000 KB
testcase_21 AC 708 ms
101,860 KB
testcase_22 AC 1,312 ms
136,960 KB
testcase_23 AC 1,423 ms
137,060 KB
testcase_24 AC 700 ms
94,148 KB
testcase_25 AC 388 ms
86,272 KB
testcase_26 AC 541 ms
89,088 KB
testcase_27 AC 792 ms
94,820 KB
testcase_28 AC 618 ms
91,440 KB
testcase_29 AC 1,309 ms
116,764 KB
testcase_30 AC 2,047 ms
131,372 KB
testcase_31 AC 1,309 ms
112,896 KB
testcase_32 AC 402 ms
100,736 KB
testcase_33 AC 408 ms
100,608 KB
testcase_34 AC 512 ms
100,808 KB
testcase_35 AC 392 ms
100,480 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())
    e[u-1].append((v-1,c))
    e[v-1].append((u-1,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
                q.append([nex,cost+d]) if d else q.appendleft([nex,cost])
    return dis[-1] < k
l,r = -1,2*10**5
while r > l + 1:
    m = (r+l)//2
    if search(m):
        r = m
    else:
        l = m
print(r)
0