結果

問題 No.2918 Divide Applicants Fairly
ユーザー みうねみうね
提出日時 2024-09-19 00:33:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 1,265 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,836 KB
実行使用メモリ 80,772 KB
最終ジャッジ日時 2024-10-07 21:05:55
合計ジャッジ時間 6,248 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,732 KB
testcase_01 AC 40 ms
55,244 KB
testcase_02 AC 37 ms
55,624 KB
testcase_03 AC 38 ms
54,660 KB
testcase_04 AC 37 ms
54,984 KB
testcase_05 AC 42 ms
54,592 KB
testcase_06 AC 44 ms
60,088 KB
testcase_07 AC 41 ms
55,012 KB
testcase_08 AC 43 ms
55,276 KB
testcase_09 AC 96 ms
76,360 KB
testcase_10 AC 42 ms
54,176 KB
testcase_11 AC 40 ms
54,784 KB
testcase_12 AC 106 ms
76,416 KB
testcase_13 AC 51 ms
62,096 KB
testcase_14 AC 45 ms
59,824 KB
testcase_15 AC 42 ms
55,108 KB
testcase_16 AC 42 ms
54,792 KB
testcase_17 AC 104 ms
76,068 KB
testcase_18 AC 42 ms
54,484 KB
testcase_19 AC 40 ms
53,952 KB
testcase_20 AC 41 ms
55,320 KB
testcase_21 AC 106 ms
76,368 KB
testcase_22 AC 41 ms
54,860 KB
testcase_23 AC 95 ms
76,352 KB
testcase_24 AC 42 ms
53,552 KB
testcase_25 AC 41 ms
53,760 KB
testcase_26 AC 42 ms
54,408 KB
testcase_27 AC 201 ms
80,772 KB
testcase_28 AC 43 ms
59,964 KB
testcase_29 AC 46 ms
62,920 KB
testcase_30 AC 38 ms
55,552 KB
testcase_31 AC 62 ms
72,816 KB
testcase_32 AC 38 ms
54,368 KB
testcase_33 AC 37 ms
54,308 KB
testcase_34 AC 38 ms
54,108 KB
testcase_35 AC 37 ms
54,532 KB
testcase_36 AC 172 ms
80,676 KB
testcase_37 AC 141 ms
77,024 KB
testcase_38 AC 107 ms
77,204 KB
testcase_39 AC 39 ms
54,124 KB
testcase_40 AC 90 ms
77,108 KB
testcase_41 AC 117 ms
76,696 KB
testcase_42 AC 124 ms
80,144 KB
testcase_43 AC 44 ms
55,700 KB
testcase_44 AC 42 ms
53,748 KB
testcase_45 AC 40 ms
54,672 KB
testcase_46 AC 42 ms
54,508 KB
testcase_47 AC 42 ms
53,936 KB
testcase_48 AC 96 ms
76,292 KB
testcase_49 AC 145 ms
77,096 KB
testcase_50 AC 43 ms
54,176 KB
testcase_51 AC 85 ms
77,052 KB
testcase_52 AC 114 ms
76,892 KB
testcase_53 AC 93 ms
76,256 KB
testcase_54 AC 92 ms
76,468 KB
testcase_55 AC 103 ms
76,128 KB
testcase_56 AC 103 ms
76,236 KB
testcase_57 AC 202 ms
80,716 KB
testcase_58 AC 105 ms
76,320 KB
testcase_59 AC 113 ms
76,444 KB
testcase_60 AC 52 ms
63,388 KB
testcase_61 AC 103 ms
76,368 KB
testcase_62 AC 107 ms
76,652 KB
testcase_63 AC 107 ms
76,592 KB
権限があれば一括ダウンロードができます

ソースコード

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

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, 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