結果

問題 No.2918 Divide Applicants Fairly
ユーザー ゆにおじさんゆにおじさん
提出日時 2024-09-18 05:28:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,253 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 84,400 KB
最終ジャッジ日時 2024-10-07 11:31:28
合計ジャッジ時間 7,095 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
54,908 KB
testcase_02 WA -
testcase_03 AC 40 ms
54,000 KB
testcase_04 AC 40 ms
55,272 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 41 ms
54,324 KB
testcase_11 AC 41 ms
54,468 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 39 ms
54,696 KB
testcase_16 AC 38 ms
55,000 KB
testcase_17 WA -
testcase_18 AC 39 ms
54,064 KB
testcase_19 WA -
testcase_20 AC 39 ms
54,912 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 39 ms
54,380 KB
testcase_25 AC 40 ms
53,980 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 42 ms
55,124 KB
testcase_31 WA -
testcase_32 AC 37 ms
54,348 KB
testcase_33 AC 39 ms
54,248 KB
testcase_34 AC 37 ms
54,536 KB
testcase_35 AC 38 ms
54,644 KB
testcase_36 AC 300 ms
83,772 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 38 ms
55,540 KB
testcase_40 AC 123 ms
78,456 KB
testcase_41 AC 172 ms
81,948 KB
testcase_42 AC 226 ms
83,344 KB
testcase_43 AC 39 ms
55,564 KB
testcase_44 AC 39 ms
54,744 KB
testcase_45 AC 39 ms
55,304 KB
testcase_46 AC 37 ms
55,176 KB
testcase_47 AC 39 ms
55,584 KB
testcase_48 WA -
testcase_49 AC 211 ms
81,896 KB
testcase_50 AC 39 ms
55,568 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 124 ms
77,744 KB
testcase_54 AC 115 ms
77,852 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 124 ms
77,628 KB
testcase_60 WA -
testcase_61 AC 137 ms
78,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
from collections import defaultdict

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

def clc_sums(rates):
    M = len(rates)
    rate_sums = defaultdict(lambda: [])
    
    for comb in range(3 ** M):
        balance, rate_sum = 0, 0
        for i in range(M):
            sgn = (comb // (3 ** i)) % 3
            if sgn == 2: sgn = -1
            balance += sgn
            rate_sum += sgn * rates[i]
        rate_sums[balance].append(rate_sum)
    
    for balance in range(-M, M + 1):
        rate_sums[balance].sort()
    
    return rate_sums

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

front_sums = clc_sums(rates[:N // 2])
back_sums = clc_sums(rates[N // 2:])

ans = 2 ** 30
flg = False
for balance in range(-N // 2, N // 2 + 1):
    for front_sum in front_sums[balance]:
        i = bisect_left(back_sums[-balance], -front_sum)
        if i > 0:
            back_sum = back_sums[-balance][i - 1]
            ans = min(ans, abs(front_sum - back_sum))
        if i < len(back_sums[-balance]):
            back_sum = back_sums[-balance][i]
            if flg or (front_sum | back_sum | balance):
                ans = min(ans, abs(front_sum - back_sum))
            else:
                flg = True
print(ans)
0