結果

問題 No.1607 Kth Maximum Card
ユーザー titiatitia
提出日時 2021-07-24 05:52:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 705 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 126,172 KB
最終ジャッジ日時 2024-07-19 06:10:08
合計ジャッジ時間 14,446 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,856 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 35 ms
51,712 KB
testcase_08 AC 1,887 ms
121,712 KB
testcase_09 AC 1,314 ms
112,780 KB
testcase_10 AC 1,615 ms
126,172 KB
testcase_11 AC 259 ms
90,240 KB
testcase_12 AC 1,180 ms
111,132 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

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=[0]
    ANS=[1<<30]*N
    ANS[0]=0

    while Q:
        x=Q.pop()
        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