結果

問題 No.1607 Kth Maximum Card
ユーザー titiatitia
提出日時 2021-07-24 05:54:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,811 ms / 3,500 ms
コード長 750 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 125,832 KB
最終ジャッジ日時 2024-07-19 06:13:16
合計ジャッジ時間 20,693 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 39 ms
53,504 KB
testcase_03 AC 40 ms
53,888 KB
testcase_04 AC 44 ms
53,376 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 42 ms
53,760 KB
testcase_07 AC 44 ms
53,376 KB
testcase_08 AC 1,544 ms
125,832 KB
testcase_09 AC 1,433 ms
116,016 KB
testcase_10 AC 1,663 ms
125,824 KB
testcase_11 AC 273 ms
88,448 KB
testcase_12 AC 1,305 ms
115,640 KB
testcase_13 AC 209 ms
84,096 KB
testcase_14 AC 237 ms
87,068 KB
testcase_15 AC 854 ms
111,192 KB
testcase_16 AC 193 ms
84,992 KB
testcase_17 AC 128 ms
78,464 KB
testcase_18 AC 488 ms
99,184 KB
testcase_19 AC 323 ms
91,392 KB
testcase_20 AC 392 ms
94,840 KB
testcase_21 AC 435 ms
96,568 KB
testcase_22 AC 863 ms
123,512 KB
testcase_23 AC 744 ms
124,028 KB
testcase_24 AC 417 ms
92,928 KB
testcase_25 AC 267 ms
88,256 KB
testcase_26 AC 315 ms
88,764 KB
testcase_27 AC 431 ms
93,180 KB
testcase_28 AC 364 ms
90,924 KB
testcase_29 AC 920 ms
104,568 KB
testcase_30 AC 1,811 ms
123,552 KB
testcase_31 AC 723 ms
101,616 KB
testcase_32 AC 281 ms
97,280 KB
testcase_33 AC 315 ms
97,408 KB
testcase_34 AC 301 ms
97,408 KB
testcase_35 AC 307 ms
97,792 KB
権限があれば一括ダウンロードができます

ソースコード

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.appendleft(to)

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

print(NG)
                
0