結果

問題 No.1607 Kth Maximum Card
ユーザー NoneNone
提出日時 2021-10-04 09:38:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,564 ms / 3,500 ms
コード長 1,250 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 301,580 KB
最終ジャッジ日時 2024-07-22 09:01:44
合計ジャッジ時間 30,007 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,460 KB
testcase_01 AC 37 ms
53,492 KB
testcase_02 AC 37 ms
53,068 KB
testcase_03 AC 37 ms
52,656 KB
testcase_04 AC 37 ms
53,204 KB
testcase_05 AC 37 ms
53,412 KB
testcase_06 AC 38 ms
52,424 KB
testcase_07 AC 38 ms
52,252 KB
testcase_08 AC 2,432 ms
261,028 KB
testcase_09 AC 1,963 ms
223,964 KB
testcase_10 AC 2,564 ms
258,560 KB
testcase_11 AC 356 ms
98,292 KB
testcase_12 AC 1,860 ms
211,292 KB
testcase_13 AC 274 ms
87,476 KB
testcase_14 AC 315 ms
96,256 KB
testcase_15 AC 1,194 ms
189,920 KB
testcase_16 AC 222 ms
88,540 KB
testcase_17 AC 129 ms
78,360 KB
testcase_18 AC 1,039 ms
156,764 KB
testcase_19 AC 510 ms
111,364 KB
testcase_20 AC 546 ms
109,036 KB
testcase_21 AC 695 ms
126,764 KB
testcase_22 AC 2,349 ms
301,580 KB
testcase_23 AC 2,221 ms
288,416 KB
testcase_24 AC 681 ms
119,196 KB
testcase_25 AC 306 ms
92,668 KB
testcase_26 AC 479 ms
108,028 KB
testcase_27 AC 708 ms
119,992 KB
testcase_28 AC 582 ms
108,776 KB
testcase_29 AC 1,547 ms
198,788 KB
testcase_30 AC 2,553 ms
224,076 KB
testcase_31 AC 1,313 ms
160,964 KB
testcase_32 AC 298 ms
97,300 KB
testcase_33 AC 312 ms
97,644 KB
testcase_34 AC 296 ms
97,292 KB
testcase_35 AC 290 ms
97,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def binary_search_int(ok,ng,test):
    """
    :param ok: solve(x) = True を必ず満たす点
    :param ng: solve(x) = False を必ず満たす点
    """
    while abs(ok-ng)>1:
        mid=(ok+ng)//2
        if test(mid):
            ok=mid
        else:
            ng=mid
    return ok


##############################################################
import sys
input = sys.stdin.readline

INF = 10**18  # 大きい数字

N, M, K = map(int, input().split())


edges=[[] for _ in range(N)]
for _ in range(M):
    x, y, cost = map(int, input().split())
    x-=1
    y-=1
    edges[x].append((y,cost))
    edges[y].append((x,cost))


def test(k):
    next_set=[[] for _ in range(N)]
    next_set[0]=[0]
    dist=[INF]*(N+1)
    for time in range(N):
        while next_set[time]:
            p = next_set[time].pop()
            if dist[p]<time: continue
            for q,d in edges[p]:
                if d>k:
                    cost=1
                else:
                    cost=0
                if dist[q]<=time+cost:
                    continue
                dist[q]=time+cost
                if q!=N-1:
                    next_set[time+cost].append(q)

    return dist[N-1]<=K-1

kmin=binary_search_int(10**6,-1,test)

print(kmin)
0