結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー H3PO4H3PO4
提出日時 2021-07-13 21:35:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,212 KB
最終ジャッジ日時 2024-07-02 16:53:07
合計ジャッジ時間 9,688 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 WA -
testcase_07 AC 879 ms
14,952 KB
testcase_08 WA -
testcase_09 AC 690 ms
14,592 KB
testcase_10 AC 692 ms
14,592 KB
testcase_11 AC 713 ms
14,592 KB
testcase_12 AC 675 ms
14,464 KB
testcase_13 AC 860 ms
15,212 KB
testcase_14 AC 840 ms
14,948 KB
testcase_15 AC 829 ms
15,072 KB
testcase_16 AC 836 ms
14,944 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A0 = int(input())
A = sorted(int(input()) for _ in range(N - 1))
l, r = 0, N - 1
while r - l > 1:
    m = (r + l) // 2
    am = A[m] + A0
    pair_l = 0
    ct = 0
    for pair_r in range(N - 2, -1, -1):
        if pair_r == m:
            continue
        while pair_l < pair_r and (A[pair_l] + A[pair_r] <= am or pair_l == m):
            pair_l += 1
        if pair_l >= pair_r:
            break
        pair_l += 1
        ct += 1
    if ct >= M:
        l = m
    else:
        r = m
ans = A[r] if r < N - 1 else -1
print(ans)
0