結果

問題 No.2918 Divide Applicants Fairly
ユーザー 高橋ゆに高橋ゆに
提出日時 2024-09-18 05:26:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,265 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 84,036 KB
最終ジャッジ日時 2024-10-07 11:31:35
合計ジャッジ時間 7,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
54,588 KB
testcase_02 WA -
testcase_03 AC 39 ms
54,256 KB
testcase_04 AC 38 ms
54,012 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 39 ms
54,052 KB
testcase_11 AC 38 ms
53,748 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 39 ms
54,320 KB
testcase_16 AC 39 ms
54,124 KB
testcase_17 WA -
testcase_18 AC 40 ms
54,628 KB
testcase_19 WA -
testcase_20 AC 37 ms
53,896 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 39 ms
54,368 KB
testcase_25 AC 38 ms
54,792 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 38 ms
55,040 KB
testcase_31 WA -
testcase_32 AC 40 ms
54,188 KB
testcase_33 AC 40 ms
55,512 KB
testcase_34 AC 39 ms
54,020 KB
testcase_35 AC 38 ms
55,532 KB
testcase_36 AC 310 ms
83,808 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 39 ms
55,000 KB
testcase_40 AC 123 ms
78,668 KB
testcase_41 AC 176 ms
82,208 KB
testcase_42 AC 246 ms
83,152 KB
testcase_43 AC 39 ms
55,404 KB
testcase_44 AC 41 ms
54,616 KB
testcase_45 AC 42 ms
54,272 KB
testcase_46 AC 40 ms
54,944 KB
testcase_47 AC 37 ms
54,664 KB
testcase_48 WA -
testcase_49 AC 220 ms
82,232 KB
testcase_50 AC 40 ms
55,508 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 125 ms
77,676 KB
testcase_54 AC 121 ms
77,540 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 129 ms
77,596 KB
testcase_60 WA -
testcase_61 AC 141 ms
78,324 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_sums[-balance][i]))
            else:
                flg = True
print(ans)
0