結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー roarisroaris
提出日時 2019-11-08 15:26:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 695 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 175,240 KB
最終ジャッジ日時 2024-09-15 00:51:12
合計ジャッジ時間 3,196 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 41 ms
52,480 KB
testcase_05 WA -
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 172 ms
156,516 KB
testcase_08 AC 172 ms
174,428 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 179 ms
175,240 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 38 ms
51,968 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

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