結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー vwxyzvwxyz
提出日時 2022-06-21 11:04:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 611 ms / 3,000 ms
コード長 685 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-10-14 04:27:58
合計ジャッジ時間 6,863 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 28 ms
10,496 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 611 ms
15,260 KB
testcase_08 AC 549 ms
15,260 KB
testcase_09 AC 462 ms
15,232 KB
testcase_10 AC 464 ms
15,232 KB
testcase_11 AC 478 ms
15,232 KB
testcase_12 AC 455 ms
15,360 KB
testcase_13 AC 581 ms
15,264 KB
testcase_14 AC 559 ms
15,256 KB
testcase_15 AC 576 ms
15,248 KB
testcase_16 AC 570 ms
15,252 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 27 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

def Bisect_Int(ok,ng,is_ok):
    while abs(ok-ng)>1:
        mid=(ok+ng)//2
        if is_ok(mid):
            ok=mid
        else:
            ng=mid
    return ok

N,M=map(int,readline().split())
a=int(readline())
A=[int(readline()) for i in range(N-1)]
A.sort()
def is_ok(i):
    if i==N-1:
        return True
    AA=[A[ii] for ii in range(N-1) if i!=ii]
    cnt=0
    l,r=0,N-3
    while l<r:
        while l+1<r and AA[l]+AA[r]<=a+A[i]:
            l+=1
        if l<r and AA[l]+AA[r]>a+A[i]:
            cnt+=1
        l+=1
        r-=1
    return cnt<M
ans=Bisect_Int(N-1,-1,is_ok)
if ans==N-1:
    ans=-1
else:
    ans=A[ans]
print(ans)
0