結果

問題 No.1607 Kth Maximum Card
ユーザー ああいいああいい
提出日時 2022-03-07 11:24:18
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 887 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 141,620 KB
最終ジャッジ日時 2024-07-22 04:53:18
合計ジャッジ時間 6,446 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,108 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 41 ms
53,120 KB
testcase_04 AC 41 ms
52,864 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 41 ms
52,608 KB
testcase_08 AC 3,493 ms
141,620 KB
testcase_09 AC 1,841 ms
132,336 KB
testcase_10 TLE -
testcase_11 AC 447 ms
92,156 KB
testcase_12 AC 2,604 ms
127,740 KB
testcase_13 AC 591 ms
86,812 KB
testcase_14 AC 588 ms
88,628 KB
testcase_15 AC 2,391 ms
122,032 KB
testcase_16 AC 451 ms
85,796 KB
testcase_17 AC 384 ms
80,800 KB
testcase_18 AC 1,362 ms
105,960 KB
testcase_19 AC 1,000 ms
96,776 KB
testcase_20 AC 1,444 ms
100,984 KB
testcase_21 AC 1,369 ms
103,192 KB
testcase_22 AC 1,194 ms
133,192 KB
testcase_23 AC 1,093 ms
133,340 KB
testcase_24 AC 778 ms
97,268 KB
testcase_25 AC 680 ms
89,856 KB
testcase_26 AC 791 ms
93,228 KB
testcase_27 AC 1,050 ms
98,392 KB
testcase_28 AC 1,048 ms
94,396 KB
testcase_29 AC 1,971 ms
112,488 KB
testcase_30 TLE -
testcase_31 AC 2,133 ms
110,996 KB
testcase_32 AC 311 ms
98,360 KB
testcase_33 AC 309 ms
98,184 KB
testcase_34 AC 338 ms
98,352 KB
testcase_35 AC 328 ms
98,248 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 = [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