結果
問題 | No.1607 Kth Maximum Card |
ユーザー | 👑 Kazun |
提出日時 | 2021-07-16 23:28:41 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,404 bytes |
コンパイル時間 | 283 ms |
コンパイル使用メモリ | 82,224 KB |
実行使用メモリ | 239,924 KB |
最終ジャッジ日時 | 2024-07-06 11:06:24 |
合計ジャッジ時間 | 31,919 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
54,464 KB |
testcase_01 | AC | 41 ms
54,968 KB |
testcase_02 | AC | 41 ms
54,436 KB |
testcase_03 | WA | - |
testcase_04 | AC | 41 ms
55,224 KB |
testcase_05 | AC | 42 ms
54,060 KB |
testcase_06 | WA | - |
testcase_07 | AC | 42 ms
54,668 KB |
testcase_08 | TLE | - |
testcase_09 | AC | 697 ms
149,740 KB |
testcase_10 | AC | 877 ms
169,556 KB |
testcase_11 | AC | 234 ms
97,764 KB |
testcase_12 | AC | 671 ms
148,156 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 176 ms
90,988 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 558 ms
130,676 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
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(k): Q=deque([N]) X=[inf]*(N+1); X[N]=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) for u,v,c in E: if c<=k and (X[u]<K or X[v]<K): return True return False #================================================= import sys from collections import deque inf=float("inf") N,M,K=map(int,input().split()) E=[] F=[{} for _ in range(N+1)] c_max=0 for _ in range(M): u,v,c=map(int,input().split()) c_max=max(c_max,c) E.append((u,v,c)) F[u][v]=F[v][u]=c E.append((1,1,0)) F[1][1]=0 print(General_Binary_Increase_Search_Integer(0,c_max+1,check))