結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー titiatitia
提出日時 2023-09-30 00:42:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,047 ms / 3,000 ms
コード長 575 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,728 KB
最終ジャッジ日時 2024-07-22 18:40:14
合計ジャッジ時間 10,780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 1,043 ms
18,600 KB
testcase_08 AC 908 ms
18,604 KB
testcase_09 AC 838 ms
18,592 KB
testcase_10 AC 831 ms
18,592 KB
testcase_11 AC 821 ms
18,592 KB
testcase_12 AC 821 ms
18,464 KB
testcase_13 AC 1,047 ms
18,728 KB
testcase_14 AC 985 ms
18,472 KB
testcase_15 AC 965 ms
18,512 KB
testcase_16 AC 1,006 ms
18,468 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
A=[int(input()) for i in range(N)]

K=A[0]
B=A[1:]

B.sort()

OK=len(B)
NG=-1

while OK>NG+1:
    mid=(OK+NG)//2

    now=K+B[mid]
    C=B[:mid]+B[mid+1:]

    ind=0
    member=0
    for i in range(len(C)-1,-1,-1):
        while ind<i and C[ind]+C[i]<=now:
            ind+=1

        if ind<i and C[ind]+C[i]>now:
            member+=1
            ind+=1

    #print(mid,now,member,C)

    if member<M:
        OK=mid
    else:
        NG=mid

if OK==len(B):
    print(-1)
else:
    print(B[OK])
    
    
0