結果

問題 No.1607 Kth Maximum Card
ユーザー ああいいああいい
提出日時 2022-03-07 11:25:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,120 ms / 3,500 ms
コード長 885 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 146,608 KB
最終ジャッジ日時 2024-07-22 04:56:40
合計ジャッジ時間 32,346 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,484 KB
testcase_01 AC 37 ms
54,996 KB
testcase_02 AC 35 ms
53,288 KB
testcase_03 AC 37 ms
53,552 KB
testcase_04 AC 35 ms
53,236 KB
testcase_05 AC 36 ms
53,204 KB
testcase_06 AC 37 ms
53,200 KB
testcase_07 AC 36 ms
53,724 KB
testcase_08 AC 2,316 ms
137,996 KB
testcase_09 AC 1,522 ms
132,084 KB
testcase_10 AC 3,120 ms
146,608 KB
testcase_11 AC 361 ms
91,772 KB
testcase_12 AC 2,020 ms
127,936 KB
testcase_13 AC 535 ms
86,696 KB
testcase_14 AC 450 ms
88,252 KB
testcase_15 AC 1,716 ms
121,480 KB
testcase_16 AC 372 ms
85,660 KB
testcase_17 AC 328 ms
80,400 KB
testcase_18 AC 1,050 ms
105,708 KB
testcase_19 AC 811 ms
96,780 KB
testcase_20 AC 1,165 ms
100,992 KB
testcase_21 AC 1,136 ms
102,828 KB
testcase_22 AC 840 ms
132,396 KB
testcase_23 AC 1,061 ms
132,116 KB
testcase_24 AC 782 ms
97,132 KB
testcase_25 AC 498 ms
89,860 KB
testcase_26 AC 617 ms
92,676 KB
testcase_27 AC 898 ms
98,188 KB
testcase_28 AC 747 ms
94,652 KB
testcase_29 AC 1,665 ms
111,976 KB
testcase_30 AC 2,997 ms
136,624 KB
testcase_31 AC 1,672 ms
110,868 KB
testcase_32 AC 264 ms
98,328 KB
testcase_33 AC 259 ms
98,172 KB
testcase_34 AC 286 ms
98,496 KB
testcase_35 AC 276 ms
98,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
rr = sys.stdin

N,M,K = map(int,rr.readline().split())
G = [[] for _ in range(N+1)]
for _ in range(M):
    a,b,c = map(int,rr.readline().split())
    G[a].append((b,c))
    G[b].append((a,c))

import heapq
inf = 10 ** 6
base = 23
mask = (1 << base) - 1
def calc(x):
    dist = [K] * (N+1)
    dist[1] = 0
    q = [1]
    while q:
        u = heapq.heappop(q)
        d,now = u >> base,u & mask
        if now == N:break
        if dist[now] < d:
            continue
        for v,c in G[now]:
            if c > x:
                c = 1
            else:
                c = 0
            if dist[v] > d + c:
                dist[v] = d + c
                heapq.heappush(q,(d+c) << base | v)
    return dist[N] < K
start = -1
end = 2 * 10 ** 5
while end - start > 1:
    mid = (end + start) // 2
    if calc(mid):
        end = mid
    else:
       start = mid
print(end)
0