結果

問題 No.545 ママの大事な二人の子供
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-18 04:45:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 88,832 KB
最終ジャッジ日時 2024-05-08 02:05:50
合計ジャッジ時間 4,308 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 42 ms
52,352 KB
testcase_05 AC 43 ms
52,224 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 43 ms
52,096 KB
testcase_08 AC 42 ms
51,968 KB
testcase_09 AC 44 ms
52,480 KB
testcase_10 AC 43 ms
52,480 KB
testcase_11 AC 44 ms
52,096 KB
testcase_12 AC 44 ms
52,608 KB
testcase_13 AC 45 ms
52,736 KB
testcase_14 AC 52 ms
60,160 KB
testcase_15 AC 44 ms
52,480 KB
testcase_16 AC 60 ms
62,848 KB
testcase_17 AC 65 ms
64,512 KB
testcase_18 AC 78 ms
70,016 KB
testcase_19 AC 92 ms
76,544 KB
testcase_20 AC 94 ms
76,288 KB
testcase_21 AC 43 ms
51,968 KB
testcase_22 AC 118 ms
79,488 KB
testcase_23 AC 164 ms
85,248 KB
testcase_24 AC 111 ms
79,616 KB
testcase_25 AC 161 ms
85,504 KB
testcase_26 AC 164 ms
85,376 KB
testcase_27 AC 143 ms
85,504 KB
testcase_28 AC 163 ms
85,248 KB
testcase_29 AC 145 ms
85,504 KB
testcase_30 AC 159 ms
88,832 KB
testcase_31 AC 149 ms
85,504 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