結果

問題 No.2918 Divide Applicants Fairly
ユーザー 高橋ゆに高橋ゆに
提出日時 2024-09-18 19:31:29
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,379 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 80,752 KB
最終ジャッジ日時 2024-10-07 11:31:36
合計ジャッジ時間 5,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 42 ms
55,792 KB
testcase_04 AC 42 ms
54,936 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 43 ms
55,556 KB
testcase_11 AC 43 ms
54,568 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 42 ms
54,252 KB
testcase_16 AC 42 ms
53,936 KB
testcase_17 RE -
testcase_18 AC 42 ms
54,380 KB
testcase_19 RE -
testcase_20 AC 42 ms
54,944 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 42 ms
54,132 KB
testcase_25 AC 41 ms
54,088 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 43 ms
55,064 KB
testcase_31 RE -
testcase_32 AC 42 ms
54,072 KB
testcase_33 AC 44 ms
54,444 KB
testcase_34 AC 43 ms
54,564 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 42 ms
54,928 KB
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 41 ms
54,428 KB
testcase_44 AC 43 ms
54,456 KB
testcase_45 AC 42 ms
55,640 KB
testcase_46 AC 42 ms
54,788 KB
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 RE -
testcase_61 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
from collections import defaultdict

N = int(input())
    
if N > 22:
    print(0)
    exit()

rates = list(map(int, input().split()))

rate_sums = defaultdict(lambda: [])

def frontexh(i, dif, rate_sum):
    if i == N // 2:
        rate_sums[dif].append(rate_sum)
    else:
        frontexh(i + 1, dif, rate_sum)
        frontexh(i + 1, dif + 1, rate_sum + rates[i])
        frontexh(i + 1, dif - 1, rate_sum - rates[i])

frontexh(0, 0, 0)

if rate_sums[0]: rate_sums[0].pop(0)
for dif in range(-N, N + 1): rate_sums[dif].sort()

ans = 2 ** 30

if rate_sums[0]:
    rate_sums[0],pop(0)
for rate_sum in rate_sums[0]:
    ans = min(ans, abs(rate_sum))

has_anyone = False

def backexh(i, dif, rate_sum):
    global ans, has_anyone
    if i == N - N // 2:
        if dif == 0:
            if has_anyone:
                ans = min(ans, min(ans, abs(rate_sum)))
            else:
                has_anyone = True
        it = bisect_left(rate_sums[dif], -rate_sum)
        if it < len(rate_sums[dif]):
            ans = min(ans, abs(rate_sum - rate_sums[dif][it]))
        if it > 0:
            ans = min(ans, abs(rate_sum - rate_sums[dif][it - 1]))
    else:
        backexh(i + 1, dif, rate_sum)
        backexh(i + 1, dif + 1, rate_sum + rates[N // 2 + i])
        backexh(i + 1, dif - 1, rate_sum - rates[N // 2 + i])

backexh(0, 0, 0)
print(ans)
0