結果

問題 No.545 ママの大事な二人の子供
ユーザー 👑 rin204rin204
提出日時 2022-10-31 23:01:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 112,012 KB
最終ジャッジ日時 2024-07-08 10:39:31
合計ジャッジ時間 3,654 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,604 KB
testcase_01 AC 33 ms
53,144 KB
testcase_02 AC 31 ms
53,460 KB
testcase_03 AC 32 ms
53,752 KB
testcase_04 AC 36 ms
53,980 KB
testcase_05 AC 32 ms
52,440 KB
testcase_06 AC 33 ms
52,548 KB
testcase_07 AC 33 ms
52,356 KB
testcase_08 AC 33 ms
53,180 KB
testcase_09 AC 32 ms
53,764 KB
testcase_10 AC 34 ms
52,776 KB
testcase_11 AC 34 ms
52,204 KB
testcase_12 AC 34 ms
52,876 KB
testcase_13 AC 34 ms
53,356 KB
testcase_14 AC 34 ms
53,304 KB
testcase_15 AC 37 ms
53,172 KB
testcase_16 AC 39 ms
58,404 KB
testcase_17 AC 41 ms
59,536 KB
testcase_18 AC 52 ms
66,952 KB
testcase_19 AC 51 ms
69,588 KB
testcase_20 AC 58 ms
75,988 KB
testcase_21 AC 33 ms
52,992 KB
testcase_22 AC 79 ms
87,756 KB
testcase_23 AC 114 ms
109,592 KB
testcase_24 AC 83 ms
89,068 KB
testcase_25 AC 112 ms
109,436 KB
testcase_26 AC 113 ms
109,960 KB
testcase_27 AC 115 ms
109,984 KB
testcase_28 AC 114 ms
109,844 KB
testcase_29 AC 114 ms
109,492 KB
testcase_30 AC 116 ms
112,012 KB
testcase_31 AC 115 ms
111,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

n = int(input())
lst = []
for _ in range(n):
    a, b = map(int, input().split())
    lst.append((a, b))

L = lst[:n//2]
R = lst[n//2:]

def f(A):
    ret = {0}
    for a, b in A:
        nex = set()
        for s in ret:
            nex.add(s + a)
            nex.add(s - b)
        ret = nex
    return sorted(ret)

L = f(L)
R = [-1 << 60] + f(R) + [1 << 60]

ans = 1 << 60
for l in L:
    l *= -1
    p = bisect_left(R, l)
    ans = min(ans, l - R[p - 1], R[p] - l)

print(ans)
0