結果

問題 No.545 ママの大事な二人の子供
ユーザー lloyzlloyz
提出日時 2022-10-17 00:11:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 106,240 KB
最終ジャッジ日時 2024-06-27 17:25:25
合計ジャッジ時間 3,896 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 37 ms
52,352 KB
testcase_12 AC 40 ms
52,736 KB
testcase_13 AC 42 ms
52,736 KB
testcase_14 AC 48 ms
60,160 KB
testcase_15 AC 41 ms
52,224 KB
testcase_16 AC 56 ms
62,848 KB
testcase_17 AC 60 ms
64,896 KB
testcase_18 AC 73 ms
70,784 KB
testcase_19 AC 74 ms
73,472 KB
testcase_20 AC 79 ms
76,672 KB
testcase_21 AC 40 ms
52,096 KB
testcase_22 AC 105 ms
87,168 KB
testcase_23 AC 165 ms
106,112 KB
testcase_24 AC 105 ms
88,192 KB
testcase_25 AC 164 ms
105,856 KB
testcase_26 AC 163 ms
106,112 KB
testcase_27 AC 163 ms
106,112 KB
testcase_28 AC 165 ms
105,728 KB
testcase_29 AC 164 ms
105,856 KB
testcase_30 AC 174 ms
106,240 KB
testcase_31 AC 169 ms
106,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
import sys
input = sys.stdin.readline

n = int(input())
AB = [list(map(int, input().split())) for _ in range(n)]

n1 = n // 2
P1 = []
for bit in range(1 << n1):
    res = 0
    for i in range(n1):
        if (bit >> i) & 1:
            res += AB[i][0]
        else:
            res -= AB[i][1]
    P1.append(res)
P1 = sorted(set(P1))
m1 = len(P1)

n2 = n - n1
P2 = []
for bit in range(1 << n2):
    res = 0
    for i in range(n2):
        if (bit >> i) & 1:
            res += AB[n1 + i][0]
        else:
            res -= AB[n1 + i][1]
    P2.append(res)
P2 = sorted(set(P2))
m2 = len(P2)

ans = 10**18
for i in range(m1):
    p1 = P1[i]
    idx = bisect_left(P2, -p1)
    if idx == m2:
        ans = min(ans, abs(p1 + P2[idx - 1]))
    else:
        ans = min(ans, abs(p1 + P2[idx - 1]), abs(p1 + P2[idx]))
print(ans)
0