結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 168 ms
157,064 KB
testcase_08 WA -
testcase_09 AC 157 ms
174,700 KB
testcase_10 AC 141 ms
150,124 KB
testcase_11 AC 132 ms
131,700 KB
testcase_12 AC 152 ms
173,928 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
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()

ans = binary_search()

if ans == N-1:
    print(-1)
else:
    print(ans)
0