結果

問題 No.545 ママの大事な二人の子供
ユーザー tobusakanatobusakana
提出日時 2023-11-01 02:52:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 103,664 KB
最終ジャッジ日時 2024-09-25 17:51:03
合計ジャッジ時間 4,434 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 45 ms
51,968 KB
testcase_07 AC 42 ms
52,352 KB
testcase_08 AC 41 ms
52,352 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 42 ms
52,224 KB
testcase_11 AC 43 ms
52,224 KB
testcase_12 AC 42 ms
52,736 KB
testcase_13 AC 47 ms
58,496 KB
testcase_14 AC 50 ms
60,032 KB
testcase_15 AC 42 ms
52,352 KB
testcase_16 AC 57 ms
62,336 KB
testcase_17 AC 62 ms
64,640 KB
testcase_18 AC 74 ms
70,272 KB
testcase_19 AC 79 ms
73,856 KB
testcase_20 AC 90 ms
76,928 KB
testcase_21 AC 42 ms
52,608 KB
testcase_22 AC 115 ms
86,784 KB
testcase_23 AC 168 ms
102,408 KB
testcase_24 AC 124 ms
86,528 KB
testcase_25 AC 204 ms
102,128 KB
testcase_26 AC 172 ms
102,124 KB
testcase_27 AC 165 ms
102,116 KB
testcase_28 AC 167 ms
102,536 KB
testcase_29 AC 157 ms
102,348 KB
testcase_30 AC 171 ms
103,664 KB
testcase_31 AC 161 ms
102,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

AB1 = AB[:N // 2]
AB2 = AB[N // 2:]

def f(X):
    n = len(X)
    res = []
    for status in range(1 << n):
        val = 0
        for i in range(n):
            if (status >> i) & 1:
                val += X[i][0]
            else:
                val -= X[i][1]
        res.append(val)
    return res
    
AB1 = set(f(AB1))
AB2 = sorted(set(f(AB2)))

import bisect
INF = 1 << 60
ans = INF
for val in AB1:
    # -valに一番近い数をAB2から探す
    ind = bisect.bisect_left(AB2, -val)
    if ind - 1 >= 0:
        ans = min(ans, abs(AB2[ind - 1] + val))
    if ind < len(AB2):
        ans = min(ans, abs(AB2[ind] + val))
print(ans)    
0