結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー maspymaspy
提出日時 2020-03-03 22:03:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 794 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,144 KB
最終ジャッジ日時 2024-10-13 23:07:25
合計ジャッジ時間 5,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 WA -
testcase_07 AC 429 ms
20,016 KB
testcase_08 WA -
testcase_09 AC 372 ms
20,016 KB
testcase_10 AC 328 ms
19,888 KB
testcase_11 AC 274 ms
20,144 KB
testcase_12 AC 383 ms
19,756 KB
testcase_13 AC 348 ms
19,888 KB
testcase_14 AC 340 ms
19,884 KB
testcase_15 AC 342 ms
20,144 KB
testcase_16 AC 339 ms
20,140 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 29 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from collections import deque

# %%
N, M, *A = map(int, read().split())

# %%
me = A[0]
A = sorted(A[1:])


# %%
def can_win(n):
    # n番目の人と組んだ場合の結果
    B = A[:]
    team_pt = B[n] + me
    del B[n]
    B = deque(B)
    pair_cnt = 0
    while len(B) >= 2:
        if B[0] + B[-1] > team_pt:
            pair_cnt += 1
            B.popleft()
            B.pop()
        else:
            B.popleft()
    return pair_cnt <= M - 1


# %%
left = 0
right = N - 1
while left + 1 < right:
    x = (left + right) // 2
    if can_win(x):
        right = x
    else:
        left = x


# %%
print(-1 if right == N - 1 else A[right])
0