結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-25 09:48:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 3,000 ms
コード長 694 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,024 KB
最終ジャッジ日時 2024-06-13 01:11:23
合計ジャッジ時間 2,970 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,632 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 39 ms
53,632 KB
testcase_03 AC 38 ms
53,504 KB
testcase_04 AC 37 ms
53,760 KB
testcase_05 AC 37 ms
53,888 KB
testcase_06 AC 37 ms
53,632 KB
testcase_07 AC 109 ms
79,712 KB
testcase_08 AC 106 ms
78,376 KB
testcase_09 AC 86 ms
78,336 KB
testcase_10 AC 92 ms
81,024 KB
testcase_11 AC 92 ms
78,752 KB
testcase_12 AC 84 ms
78,336 KB
testcase_13 AC 108 ms
77,608 KB
testcase_14 AC 107 ms
80,532 KB
testcase_15 AC 107 ms
79,872 KB
testcase_16 AC 106 ms
79,316 KB
testcase_17 AC 43 ms
53,632 KB
testcase_18 AC 40 ms
53,504 KB
testcase_19 AC 40 ms
53,632 KB
testcase_20 AC 38 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

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


def F(x):
    C = deque()
    for i, b in enumerate(B):
        if i == x:
            continue
        C.append(b)

    score = A + B[x]
    cnt = 0
    while C:
        R = C.pop()
        while C:
            L = C.popleft()
            if R + L > score:
                cnt += 1
                break
    return cnt >= M


l = -1
r = N-1
while (r - l) > 1:
    m = (r + l) // 2
    if F(m):
        l = m
    else:
        r = m


if r == N - 1:
    print(-1)
else:
    print(B[r])
0