結果

問題 No.1607 Kth Maximum Card
ユーザー 👑 KazunKazun
提出日時 2021-07-17 00:08:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,994 ms / 3,500 ms
コード長 1,305 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 210,712 KB
最終ジャッジ日時 2024-07-06 11:43:48
合計ジャッジ時間 19,754 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,004 KB
testcase_01 AC 34 ms
55,856 KB
testcase_02 AC 32 ms
54,992 KB
testcase_03 AC 33 ms
54,384 KB
testcase_04 AC 33 ms
54,368 KB
testcase_05 AC 33 ms
55,152 KB
testcase_06 AC 33 ms
54,752 KB
testcase_07 AC 32 ms
55,100 KB
testcase_08 AC 1,994 ms
210,712 KB
testcase_09 AC 532 ms
158,216 KB
testcase_10 AC 641 ms
177,056 KB
testcase_11 AC 164 ms
96,908 KB
testcase_12 AC 491 ms
155,332 KB
testcase_13 AC 208 ms
93,956 KB
testcase_14 AC 251 ms
98,456 KB
testcase_15 AC 1,037 ms
173,216 KB
testcase_16 AC 126 ms
92,700 KB
testcase_17 AC 114 ms
81,520 KB
testcase_18 AC 606 ms
133,420 KB
testcase_19 AC 416 ms
113,632 KB
testcase_20 AC 552 ms
121,976 KB
testcase_21 AC 572 ms
127,432 KB
testcase_22 AC 1,095 ms
202,812 KB
testcase_23 AC 1,038 ms
203,380 KB
testcase_24 AC 465 ms
112,364 KB
testcase_25 AC 270 ms
99,700 KB
testcase_26 AC 339 ms
103,760 KB
testcase_27 AC 485 ms
113,472 KB
testcase_28 AC 392 ms
107,804 KB
testcase_29 AC 372 ms
136,472 KB
testcase_30 AC 1,976 ms
201,620 KB
testcase_31 AC 894 ms
138,820 KB
testcase_32 AC 670 ms
151,540 KB
testcase_33 AC 666 ms
151,536 KB
testcase_34 AC 674 ms
151,300 KB
testcase_35 AC 678 ms
151,296 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]

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

    while Q:
        x=Q.popleft()

        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())
E=[]
F=[{} for _ in range(N+1)]
C={0}
for _ in range(M):
    u,v,c=map(int,input().split())
    E.append((u,v,c))
    F[u][v]=F[v][u]=c
    C.add(c)

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