結果

問題 No.1607 Kth Maximum Card
ユーザー ああいいああいい
提出日時 2022-03-07 11:36:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,199 ms / 3,500 ms
コード長 1,418 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 149,608 KB
最終ジャッジ日時 2024-07-22 05:13:23
合計ジャッジ時間 24,101 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,272 KB
testcase_01 AC 44 ms
54,016 KB
testcase_02 AC 43 ms
54,400 KB
testcase_03 AC 44 ms
54,016 KB
testcase_04 AC 44 ms
54,016 KB
testcase_05 AC 44 ms
54,272 KB
testcase_06 AC 45 ms
54,528 KB
testcase_07 AC 44 ms
54,144 KB
testcase_08 AC 1,696 ms
137,892 KB
testcase_09 AC 930 ms
120,908 KB
testcase_10 AC 2,164 ms
149,608 KB
testcase_11 AC 217 ms
88,064 KB
testcase_12 AC 1,409 ms
127,096 KB
testcase_13 AC 267 ms
83,864 KB
testcase_14 AC 305 ms
86,124 KB
testcase_15 AC 1,091 ms
117,860 KB
testcase_16 AC 203 ms
83,732 KB
testcase_17 AC 156 ms
78,976 KB
testcase_18 AC 772 ms
101,344 KB
testcase_19 AC 439 ms
90,880 KB
testcase_20 AC 613 ms
94,188 KB
testcase_21 AC 690 ms
97,376 KB
testcase_22 AC 1,154 ms
136,884 KB
testcase_23 AC 1,258 ms
136,704 KB
testcase_24 AC 605 ms
91,488 KB
testcase_25 AC 414 ms
86,400 KB
testcase_26 AC 486 ms
87,972 KB
testcase_27 AC 703 ms
92,520 KB
testcase_28 AC 519 ms
89,624 KB
testcase_29 AC 1,196 ms
110,320 KB
testcase_30 AC 2,199 ms
133,648 KB
testcase_31 AC 1,230 ms
107,656 KB
testcase_32 AC 243 ms
97,720 KB
testcase_33 AC 236 ms
97,536 KB
testcase_34 AC 281 ms
97,948 KB
testcase_35 AC 285 ms
97,644 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
"""
from collections import deque
def calc(x):
    dist = [inf] * (N+1)
    dist[1] = 0
    q = deque()
    q.append((0,1))
    while q:
        d,now = q.popleft()
        if now == N:break
        if dist[now] < d:continue
        for v,c in G[now]:
            if c > x:
                if dist[v] > d + 1:
                    dist[v] = d + 1
                    q.append((d+1,v))
            else:
                if dist[v] > d:
                    dist[v] = d
                    q.appendleft((d,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