結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
55,184 KB
testcase_02 WA -
testcase_03 AC 42 ms
54,192 KB
testcase_04 AC 43 ms
54,256 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 43 ms
55,048 KB
testcase_11 AC 42 ms
55,500 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 42 ms
55,128 KB
testcase_16 AC 42 ms
55,184 KB
testcase_17 WA -
testcase_18 AC 42 ms
54,628 KB
testcase_19 WA -
testcase_20 AC 42 ms
54,692 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 43 ms
55,972 KB
testcase_25 AC 43 ms
54,428 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 43 ms
54,784 KB
testcase_31 WA -
testcase_32 AC 43 ms
55,004 KB
testcase_33 AC 42 ms
54,280 KB
testcase_34 AC 41 ms
55,312 KB
testcase_35 AC 43 ms
54,428 KB
testcase_36 AC 333 ms
83,788 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 43 ms
54,168 KB
testcase_40 AC 136 ms
78,416 KB
testcase_41 AC 190 ms
82,244 KB
testcase_42 AC 252 ms
83,124 KB
testcase_43 AC 41 ms
55,124 KB
testcase_44 AC 42 ms
54,672 KB
testcase_45 AC 43 ms
55,428 KB
testcase_46 AC 42 ms
55,804 KB
testcase_47 AC 43 ms
55,532 KB
testcase_48 WA -
testcase_49 AC 234 ms
82,156 KB
testcase_50 AC 43 ms
55,236 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 126 ms
77,664 KB
testcase_54 AC 126 ms
77,636 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 135 ms
77,724 KB
testcase_60 WA -
testcase_61 AC 149 ms
78,364 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]
            if flg or front_sum | back_sum | balance:
                ans = min(ans, abs(front_sum - back_sum))
            else:
                flg = True
        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