結果

問題 No.545 ママの大事な二人の子供
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-18 04:45:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 960 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 88,772 KB
最終ジャッジ日時 2024-12-14 01:22:43
合計ジャッジ時間 3,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,572 KB
testcase_01 AC 39 ms
53,088 KB
testcase_02 AC 39 ms
52,496 KB
testcase_03 AC 38 ms
53,272 KB
testcase_04 AC 38 ms
52,804 KB
testcase_05 AC 38 ms
53,168 KB
testcase_06 AC 39 ms
52,616 KB
testcase_07 AC 38 ms
53,668 KB
testcase_08 AC 40 ms
52,612 KB
testcase_09 AC 38 ms
52,572 KB
testcase_10 AC 39 ms
53,440 KB
testcase_11 AC 40 ms
52,676 KB
testcase_12 AC 38 ms
53,004 KB
testcase_13 AC 41 ms
54,420 KB
testcase_14 AC 46 ms
60,304 KB
testcase_15 AC 39 ms
53,556 KB
testcase_16 AC 50 ms
64,672 KB
testcase_17 AC 57 ms
65,976 KB
testcase_18 AC 65 ms
70,700 KB
testcase_19 AC 77 ms
76,572 KB
testcase_20 AC 78 ms
76,396 KB
testcase_21 AC 39 ms
52,480 KB
testcase_22 AC 102 ms
79,724 KB
testcase_23 AC 144 ms
85,528 KB
testcase_24 AC 94 ms
79,588 KB
testcase_25 AC 139 ms
85,708 KB
testcase_26 AC 148 ms
85,872 KB
testcase_27 AC 131 ms
85,948 KB
testcase_28 AC 145 ms
85,592 KB
testcase_29 AC 131 ms
85,724 KB
testcase_30 AC 144 ms
88,772 KB
testcase_31 AC 136 ms
85,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = [0]*n
B = [0]*n
for i in range(n):
    a, b = map(int, input().split())
    A[i] = a
    B[i] = b

p = n//2
q = n-p
A1 = A[0:p]
A2 = A[p:n]
B1 = B[0:p]
B2 = B[p:n]
D1 = []
D2 = []
for i in range(2**p):
    a = 0
    b = 0
    for j in range(p):
        if (i >> j) & 1:
            a += A1[j]
        else:
            b += B1[j]
    D1.append(a-b)

for i in range(2**q):
    a = 0
    b = 0
    for j in range(q):
        if (i >> j) & 1:
            a += A2[j]
        else:
            b += B2[j]
    D2.append(a-b)
D2.sort()
D2 = [-10**18] + D2 + [10**18]
import bisect
ans = 10**18
for d in D1:
    id = bisect.bisect_right(D2, -d)
    ans = min(ans, min(abs(D2[id-1]+d), abs(D2[id]+d)))
print(ans)
0