結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー roarisroaris
提出日時 2019-11-08 15:29:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 3,000 ms
コード長 690 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 174,976 KB
最終ジャッジ日時 2024-09-15 00:51:15
合計ジャッジ時間 3,323 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 179 ms
156,476 KB
testcase_08 AC 181 ms
174,976 KB
testcase_09 AC 171 ms
174,572 KB
testcase_10 AC 156 ms
149,480 KB
testcase_11 AC 149 ms
131,172 KB
testcase_12 AC 168 ms
174,564 KB
testcase_13 AC 189 ms
174,724 KB
testcase_14 AC 181 ms
167,760 KB
testcase_15 AC 182 ms
168,152 KB
testcase_16 AC 193 ms
168,476 KB
testcase_17 AC 40 ms
51,584 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 40 ms
52,096 KB
testcase_20 AC 40 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def judge(x):
    p = a0+a[x]
    b = [a[i] for i in range(N-1) if i != x]
    pair = 0
    l, r = 0, N-3
    
    while l < r:
        if b[l]+b[r] >= p+1:
            pair += 1
            r -= 1
        
        l += 1

    return pair <= M-1
    
def binary_search():
    left, right = 0, N-2
    
    while left <= right:
        mid = (left+right)//2
        
        if judge(mid):
            right = mid-1
        else:
            left = mid+1
    
    return left

N, M = map(int, input().split())
a0 = int(input())
a = [int(input()) for _ in range(N-1)]
a.sort()

idx = binary_search()

if idx == N-1:
    print(-1)
else:
    print(a[idx])
0