結果

問題 No.1607 Kth Maximum Card
ユーザー titiatitia
提出日時 2021-07-24 05:53:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 746 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 283,008 KB
最終ジャッジ日時 2024-07-19 06:11:09
合計ジャッジ時間 17,539 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 43 ms
53,632 KB
testcase_03 AC 44 ms
53,376 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 44 ms
53,888 KB
testcase_06 AC 44 ms
54,016 KB
testcase_07 AC 43 ms
53,632 KB
testcase_08 AC 3,031 ms
137,316 KB
testcase_09 AC 1,719 ms
118,128 KB
testcase_10 AC 2,840 ms
132,708 KB
testcase_11 AC 547 ms
88,704 KB
testcase_12 AC 2,131 ms
117,956 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import deque

N,M,K=map(int,input().split())
E=[[] for i in range(N)]

for i in range(M):
    u,v,c=map(int,input().split())
    u-=1
    v-=1

    E[u].append((v,c))
    E[v].append((u,c))

OK=10**6
NG=0

while OK>NG+1:
    mid=(OK+NG)//2

    Q=deque([0])
    ANS=[1<<30]*N
    ANS[0]=0

    while Q:
        x=Q.popleft()
        for to,c in E[x]:
            if c>=mid:
                if ANS[to]>ANS[x]+1:
                    ANS[to]=ANS[x]+1
                    Q.append(to)
            else:
                if ANS[to]>ANS[x]:
                    ANS[to]=ANS[x]
                    Q.append(to)

    if ANS[N-1]>=K:
        NG=mid
    else:
        OK=mid

print(NG)
                
0