結果

問題 No.545 ママの大事な二人の子供
ユーザー noriocnorioc
提出日時 2024-09-30 11:28:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 92,492 KB
最終ジャッジ日時 2024-09-30 11:28:27
合計ジャッジ時間 3,270 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,188 KB
testcase_01 AC 34 ms
53,016 KB
testcase_02 AC 34 ms
53,448 KB
testcase_03 AC 36 ms
52,776 KB
testcase_04 AC 35 ms
53,220 KB
testcase_05 AC 34 ms
53,680 KB
testcase_06 AC 33 ms
52,656 KB
testcase_07 AC 33 ms
53,280 KB
testcase_08 AC 35 ms
52,200 KB
testcase_09 AC 34 ms
52,128 KB
testcase_10 AC 33 ms
54,396 KB
testcase_11 AC 34 ms
53,344 KB
testcase_12 AC 35 ms
53,560 KB
testcase_13 AC 38 ms
58,688 KB
testcase_14 AC 39 ms
60,840 KB
testcase_15 AC 34 ms
52,708 KB
testcase_16 AC 43 ms
63,280 KB
testcase_17 AC 50 ms
67,772 KB
testcase_18 AC 57 ms
71,316 KB
testcase_19 AC 76 ms
74,360 KB
testcase_20 AC 71 ms
76,808 KB
testcase_21 AC 34 ms
52,892 KB
testcase_22 AC 88 ms
81,588 KB
testcase_23 AC 141 ms
90,444 KB
testcase_24 AC 93 ms
81,196 KB
testcase_25 AC 138 ms
90,448 KB
testcase_26 AC 134 ms
91,084 KB
testcase_27 AC 133 ms
90,700 KB
testcase_28 AC 138 ms
90,312 KB
testcase_29 AC 137 ms
90,572 KB
testcase_30 AC 140 ms
92,492 KB
testcase_31 AC 143 ms
91,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

INF = 1 << 60
N = int(input())
snacks = []
for _ in range(N):
    A, B = map(int, input().split())
    snacks.append((A, B))


def f(xs):
    n = len(xs)
    d = set()
    for i in range(1 << n):
        a = b = 0
        for j in range(n):
            if i & (1 << j):
                a += xs[j][0]
            else:
                b += xs[j][1]

        d.add(a - b)

    return d


xs = f(snacks[:N//2])
ys = sorted(list(f(snacks[N//2:])))
ans = INF
for x in xs:
    p = bisect_left(ys, -x)
    for i in [p-1, p, p+1]:
        if 0 <= i < len(ys):
            ans = min(ans, abs(x + ys[i]))

print(ans)
0