結果

問題 No.2799 Cut and Eat
ユーザー KudeKude
提出日時 2024-06-29 02:51:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,137 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-06-29 02:51:57
合計ジャッジ時間 3,015 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
61,312 KB
testcase_01 AC 51 ms
61,184 KB
testcase_02 AC 51 ms
61,312 KB
testcase_03 AC 50 ms
61,184 KB
testcase_04 AC 50 ms
61,696 KB
testcase_05 AC 51 ms
61,696 KB
testcase_06 AC 52 ms
61,312 KB
testcase_07 AC 50 ms
61,568 KB
testcase_08 AC 52 ms
61,312 KB
testcase_09 AC 50 ms
61,824 KB
testcase_10 AC 51 ms
61,568 KB
testcase_11 AC 50 ms
61,696 KB
testcase_12 AC 52 ms
61,440 KB
testcase_13 AC 49 ms
61,568 KB
testcase_14 AC 49 ms
61,696 KB
testcase_15 AC 50 ms
61,440 KB
testcase_16 AC 56 ms
61,952 KB
testcase_17 AC 51 ms
61,696 KB
testcase_18 AC 50 ms
61,696 KB
testcase_19 AC 49 ms
61,696 KB
testcase_20 AC 50 ms
61,312 KB
testcase_21 AC 50 ms
61,632 KB
testcase_22 AC 50 ms
61,440 KB
testcase_23 AC 50 ms
61,824 KB
testcase_24 AC 50 ms
61,952 KB
testcase_25 AC 50 ms
61,560 KB
testcase_26 AC 50 ms
61,824 KB
testcase_27 AC 50 ms
61,952 KB
testcase_28 AC 50 ms
61,952 KB
testcase_29 AC 49 ms
61,824 KB
testcase_30 AC 49 ms
61,184 KB
testcase_31 AC 50 ms
61,440 KB
testcase_32 AC 48 ms
61,568 KB
testcase_33 AC 48 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache

@cache
def f(p):
    ans = -sum(p)
    if not p:
        return 0
    n = len(p)
    for i in range(n):
        x = p[i]
        if x <= k:
            ans = max(ans, x - f(tuple(sorted(p[:i] + p[i+1:]))))
        else:
            for s in range(1, x):
                ans = max(ans, -f(tuple(sorted(p[:i] + p[i+1:] + (s, x - s)))))
    return ans

from random import *
# k = int(input())
# k=3

def solve(k, inp):
    d1 = []
    d2 = []
    for x in inp:
        if x <= k:
            d1.append(x)
        else:
            d2.append(x)
    d1.sort(reverse=True)
    res = sum(d1[0::2]) - sum(d1[1::2])
    turn = len(d1) % 2
    if sum(d2) % 2:
        if (turn + len(d2)) % 2 == 0:
            res += 1
        else:
            res -= 1
    return res

for _ in range(0):
    k = randrange(1, 6)
    inp = tuple(sorted(randrange(1, 10) for _ in range(randrange(1, 5))))
    f.cache_clear()
    res = solve(k, inp)
    # print(k, inp, f(inp), res)
    assert f(inp) == res
# print(f(inp))

n, k = map(int, input().split())
a = tuple(sorted(map(int, input().split())))
print((solve(k, a) + sum(a)) // 2)
0