結果

問題 No.1607 Kth Maximum Card
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-17 10:40:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,016 ms / 3,500 ms
コード長 711 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 189,220 KB
最終ジャッジ日時 2024-07-06 22:16:21
合計ジャッジ時間 20,349 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,396 KB
testcase_01 AC 40 ms
55,832 KB
testcase_02 AC 38 ms
54,632 KB
testcase_03 AC 37 ms
55,068 KB
testcase_04 AC 38 ms
54,844 KB
testcase_05 AC 36 ms
54,340 KB
testcase_06 AC 38 ms
56,152 KB
testcase_07 AC 39 ms
54,440 KB
testcase_08 AC 1,393 ms
149,824 KB
testcase_09 AC 1,543 ms
163,232 KB
testcase_10 AC 2,016 ms
189,220 KB
testcase_11 AC 293 ms
91,724 KB
testcase_12 AC 1,445 ms
161,840 KB
testcase_13 AC 201 ms
83,868 KB
testcase_14 AC 229 ms
86,372 KB
testcase_15 AC 815 ms
122,128 KB
testcase_16 AC 194 ms
84,356 KB
testcase_17 AC 137 ms
79,176 KB
testcase_18 AC 532 ms
105,452 KB
testcase_19 AC 354 ms
92,456 KB
testcase_20 AC 476 ms
99,888 KB
testcase_21 AC 485 ms
102,096 KB
testcase_22 AC 875 ms
137,096 KB
testcase_23 AC 913 ms
136,856 KB
testcase_24 AC 427 ms
94,584 KB
testcase_25 AC 242 ms
86,616 KB
testcase_26 AC 354 ms
89,372 KB
testcase_27 AC 496 ms
94,816 KB
testcase_28 AC 368 ms
91,432 KB
testcase_29 AC 801 ms
116,740 KB
testcase_30 AC 1,417 ms
131,500 KB
testcase_31 AC 838 ms
113,132 KB
testcase_32 AC 292 ms
100,700 KB
testcase_33 AC 300 ms
100,676 KB
testcase_34 AC 361 ms
100,636 KB
testcase_35 AC 308 ms
100,656 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
                if d:
                    q.append([nex,cost+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