結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 WA -
testcase_07 AC 620 ms
15,388 KB
testcase_08 WA -
testcase_09 AC 472 ms
15,488 KB
testcase_10 AC 473 ms
15,488 KB
testcase_11 AC 454 ms
15,360 KB
testcase_12 AC 473 ms
15,360 KB
testcase_13 AC 572 ms
15,384 KB
testcase_14 AC 596 ms
15,124 KB
testcase_15 AC 592 ms
15,380 KB
testcase_16 AC 586 ms
15,256 KB
testcase_17 AC 28 ms
10,496 KB
testcase_18 AC 27 ms
10,496 KB
testcase_19 AC 28 ms
10,496 KB
testcase_20 AC 26 ms
10,624 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,0,is_ok)
if ans==N-1:
    ans=-1
else:
    ans=A[ans]
print(ans)
0