結果

問題 No.1607 Kth Maximum Card
ユーザー 👑 KazunKazun
提出日時 2021-07-17 00:02:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,581 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 268,388 KB
最終ジャッジ日時 2024-07-06 11:38:29
合計ジャッジ時間 6,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,500 KB
testcase_01 AC 34 ms
55,512 KB
testcase_02 AC 35 ms
54,612 KB
testcase_03 AC 36 ms
55,632 KB
testcase_04 AC 34 ms
54,796 KB
testcase_05 AC 37 ms
54,064 KB
testcase_06 AC 33 ms
54,620 KB
testcase_07 AC 32 ms
54,988 KB
testcase_08 TLE -
testcase_09 AC 621 ms
165,608 KB
testcase_10 AC 783 ms
186,380 KB
testcase_11 AC 178 ms
102,784 KB
testcase_12 AC 589 ms
162,156 KB
testcase_13 AC 329 ms
97,744 KB
testcase_14 AC 397 ms
105,332 KB
testcase_15 AC 1,864 ms
230,152 KB
testcase_16 AC 142 ms
94,776 KB
testcase_17 AC 155 ms
82,080 KB
testcase_18 AC 1,054 ms
161,692 KB
testcase_19 AC 666 ms
126,520 KB
testcase_20 AC 1,617 ms
142,148 KB
testcase_21 AC 974 ms
148,268 KB
testcase_22 AC 2,109 ms
268,388 KB
testcase_23 AC 2,034 ms
267,156 KB
testcase_24 AC 765 ms
127,580 KB
testcase_25 AC 446 ms
107,348 KB
testcase_26 AC 572 ms
111,904 KB
testcase_27 AC 843 ms
129,460 KB
testcase_28 AC 654 ms
119,688 KB
testcase_29 AC 462 ms
140,072 KB
testcase_30 AC 3,483 ms
264,184 KB
testcase_31 AC 1,505 ms
178,992 KB
testcase_32 AC 771 ms
151,780 KB
testcase_33 AC 766 ms
151,324 KB
testcase_34 AC 774 ms
151,520 KB
testcase_35 AC 777 ms
151,520 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 zero_one_bfs(start,k):
    Q=deque([start])
    X=[inf]*(N+1); X[start]=0

    M=[0]*(N+1)

    while Q:
        x=Q.popleft()
        if M[x]: continue

        M[x]=1
        f=F[x]

        for y in f:
            if f[y]>k:
                if X[y]>X[x]+1:
                    X[y]=X[x]+1
                    Q.append(y)
            else:
                if X[y]>X[x]:
                    X[y]=X[x]
                    Q.appendleft(y)
    return X

def check(i):
    k=C[i]
    X=zero_one_bfs(1,k)
    Y=zero_one_bfs(N,k)

    for u,v,c in E:
        if c>k:
            continue

        if (X[u]+Y[v]<K or Y[u]+X[v]<K):
            return True

    return False
#=================================================
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