結果

問題 No.545 ママの大事な二人の子供
ユーザー hedwig100hedwig100
提出日時 2020-05-29 11:56:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 90,352 KB
最終ジャッジ日時 2024-10-14 15:44:42
合計ジャッジ時間 3,202 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,596 KB
testcase_01 AC 40 ms
54,048 KB
testcase_02 AC 39 ms
52,696 KB
testcase_03 AC 39 ms
52,824 KB
testcase_04 AC 38 ms
52,492 KB
testcase_05 AC 40 ms
53,528 KB
testcase_06 AC 38 ms
52,824 KB
testcase_07 AC 40 ms
53,320 KB
testcase_08 AC 38 ms
52,104 KB
testcase_09 AC 40 ms
53,500 KB
testcase_10 AC 40 ms
53,724 KB
testcase_11 AC 41 ms
53,272 KB
testcase_12 AC 40 ms
52,892 KB
testcase_13 AC 41 ms
53,644 KB
testcase_14 AC 39 ms
53,112 KB
testcase_15 AC 40 ms
54,016 KB
testcase_16 AC 45 ms
59,576 KB
testcase_17 AC 47 ms
59,776 KB
testcase_18 AC 61 ms
67,120 KB
testcase_19 AC 59 ms
68,204 KB
testcase_20 AC 65 ms
73,480 KB
testcase_21 AC 40 ms
52,396 KB
testcase_22 AC 84 ms
80,460 KB
testcase_23 AC 107 ms
89,528 KB
testcase_24 AC 80 ms
80,476 KB
testcase_25 AC 101 ms
89,988 KB
testcase_26 AC 108 ms
89,804 KB
testcase_27 AC 100 ms
90,352 KB
testcase_28 AC 108 ms
89,820 KB
testcase_29 AC 96 ms
89,960 KB
testcase_30 AC 100 ms
89,812 KB
testcase_31 AC 97 ms
89,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left,bisect_right
N = int(input())
satisf = [tuple(map(int,input().split())) for _ in range(N)]
if N == 1:
    print(min(satisf[0]))
    exit()

left = [satisf[0][0],-satisf[0][1]]
for x,y in satisf[1:int(N//2)]:
    left = [l + x for l in left] + [l - y for l in left]
right = [satisf[N//2][0],-satisf[N//2][1]]
for x,y in satisf[int(N//2) + 1:]:
    right = [r + x for r in right] + [r - y for r in right]

right = list(set(right))
right.sort()
ans = 1<<30
for l in left:
    idx = bisect_left(right,-l)
    if idx == len(right):
        ans = min(ans,abs(right[idx - 1] + l))
    elif idx == 0:
        ans = min(ans,abs(right[0] + l))
    else:
        ans = min(ans,abs(right[idx - 1] + l),abs(right[idx] + l))
print(ans)
0