結果

問題 No.1607 Kth Maximum Card
ユーザー ああいいああいい
提出日時 2022-03-07 11:22:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 848 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 146,852 KB
最終ジャッジ日時 2024-07-22 04:50:04
合計ジャッジ時間 7,094 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,592 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 41 ms
52,864 KB
testcase_03 AC 40 ms
52,864 KB
testcase_04 AC 39 ms
52,864 KB
testcase_05 AC 40 ms
52,864 KB
testcase_06 AC 40 ms
52,608 KB
testcase_07 AC 40 ms
52,864 KB
testcase_08 AC 3,486 ms
141,488 KB
testcase_09 AC 1,920 ms
132,336 KB
testcase_10 TLE -
testcase_11 AC 506 ms
92,348 KB
testcase_12 AC 2,510 ms
128,280 KB
testcase_13 AC 619 ms
87,336 KB
testcase_14 AC 600 ms
89,172 KB
testcase_15 AC 2,419 ms
123,016 KB
testcase_16 AC 474 ms
86,128 KB
testcase_17 AC 405 ms
81,256 KB
testcase_18 AC 1,403 ms
106,288 KB
testcase_19 AC 1,029 ms
96,060 KB
testcase_20 AC 1,477 ms
100,596 KB
testcase_21 AC 1,365 ms
102,928 KB
testcase_22 AC 1,205 ms
131,912 KB
testcase_23 AC 1,506 ms
133,860 KB
testcase_24 AC 1,050 ms
97,204 KB
testcase_25 AC 785 ms
90,548 KB
testcase_26 AC 845 ms
93,092 KB
testcase_27 AC 1,241 ms
98,724 KB
testcase_28 AC 1,067 ms
95,056 KB
testcase_29 AC 2,019 ms
111,580 KB
testcase_30 TLE -
testcase_31 AC 2,152 ms
110,444 KB
testcase_32 AC 408 ms
101,104 KB
testcase_33 AC 417 ms
101,392 KB
testcase_34 AC 424 ms
101,088 KB
testcase_35 AC 403 ms
100,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int,input().split())
G = [[] for _ in range(N+1)]
for _ in range(M):
    a,b,c = map(int,input().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 = [inf] * (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