結果

問題 No.1607 Kth Maximum Card
ユーザー 👑 KazunKazun
提出日時 2021-07-17 00:23:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,071 ms / 3,500 ms
コード長 1,331 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 210,548 KB
最終ジャッジ日時 2024-07-06 11:56:08
合計ジャッジ時間 18,311 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,060 KB
testcase_01 AC 37 ms
54,296 KB
testcase_02 AC 39 ms
54,124 KB
testcase_03 AC 33 ms
55,252 KB
testcase_04 AC 34 ms
53,868 KB
testcase_05 AC 34 ms
53,992 KB
testcase_06 AC 33 ms
54,744 KB
testcase_07 AC 34 ms
54,776 KB
testcase_08 AC 2,071 ms
210,548 KB
testcase_09 AC 432 ms
138,176 KB
testcase_10 AC 542 ms
151,668 KB
testcase_11 AC 138 ms
93,884 KB
testcase_12 AC 409 ms
135,936 KB
testcase_13 AC 211 ms
90,836 KB
testcase_14 AC 245 ms
94,120 KB
testcase_15 AC 1,007 ms
163,152 KB
testcase_16 AC 114 ms
89,536 KB
testcase_17 AC 117 ms
80,384 KB
testcase_18 AC 602 ms
123,952 KB
testcase_19 AC 393 ms
103,320 KB
testcase_20 AC 528 ms
112,748 KB
testcase_21 AC 599 ms
115,552 KB
testcase_22 AC 1,044 ms
201,280 KB
testcase_23 AC 990 ms
201,284 KB
testcase_24 AC 456 ms
110,256 KB
testcase_25 AC 274 ms
97,004 KB
testcase_26 AC 344 ms
100,828 KB
testcase_27 AC 468 ms
110,788 KB
testcase_28 AC 386 ms
105,048 KB
testcase_29 AC 334 ms
121,492 KB
testcase_30 AC 1,984 ms
202,412 KB
testcase_31 AC 853 ms
134,792 KB
testcase_32 AC 469 ms
118,872 KB
testcase_33 AC 469 ms
118,476 KB
testcase_34 AC 459 ms
118,732 KB
testcase_35 AC 465 ms
118,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def General_Binary_Increase_Search_Integer(L,R,cond,default=None):
    """条件式が単調増加であるとき, 整数上で二部探索を行う.
    L: 解の下限
    R: 解の上限
    cond: 条件(1変数関数, 広義単調増加を満たす)
    default: Rで条件を満たさないときの返り値
    """
    if not(cond(R)): return default

    if cond(L): return L

    R+=1
    while R-L>1:
        C=L+(R-L)//2
        if cond(C): R=C
        else: L=C
    return R

def check(i):
    k=C[i]

    T=[0]*(N+1)

    X=[inf]*(N+1)
    X[1]=0
    Q=deque([1])

    while Q:
        x=Q.popleft()

        if T[x]:
            continue

        T[x]=1
        f=F[x]
        for y in f:
            if f[y]>k:
                if X[y]>X[x]+1:
                    Q.append(y)
                    X[y]=X[x]+1
            else:
                if X[y]>X[x]:
                    Q.appendleft(y)
                    X[y]=X[x]
    return X[N]<K
#=================================================
import sys
from collections import deque
inf=float("inf")
input=sys.stdin.readline
N,M,K=map(int,input().split())
F=[{} for _ in range(N+1)]
C={0}
for _ in range(M):
    u,v,c=map(int,input().split())
    F[u][v]=F[v][u]=c
    C.add(c)

F[1][1]=0
C=sorted(C)
print(C[General_Binary_Increase_Search_Integer(0,len(C)-1,check)])
0