結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー noriocnorioc
提出日時 2024-06-20 05:16:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 110,124 KB
最終ジャッジ日時 2024-06-20 05:17:03
合計ジャッジ時間 21,452 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,820 KB
testcase_01 AC 36 ms
52,680 KB
testcase_02 AC 43 ms
59,292 KB
testcase_03 AC 41 ms
58,572 KB
testcase_04 AC 43 ms
59,168 KB
testcase_05 AC 44 ms
60,296 KB
testcase_06 AC 42 ms
58,308 KB
testcase_07 AC 50 ms
60,580 KB
testcase_08 AC 42 ms
58,972 KB
testcase_09 AC 43 ms
58,980 KB
testcase_10 AC 42 ms
60,416 KB
testcase_11 AC 42 ms
58,516 KB
testcase_12 AC 42 ms
59,612 KB
testcase_13 AC 42 ms
58,564 KB
testcase_14 AC 41 ms
59,116 KB
testcase_15 AC 42 ms
58,304 KB
testcase_16 AC 42 ms
59,088 KB
testcase_17 AC 42 ms
58,688 KB
testcase_18 AC 345 ms
109,428 KB
testcase_19 AC 345 ms
105,376 KB
testcase_20 AC 221 ms
103,048 KB
testcase_21 AC 78 ms
73,104 KB
testcase_22 AC 230 ms
104,408 KB
testcase_23 AC 72 ms
71,860 KB
testcase_24 AC 285 ms
103,552 KB
testcase_25 AC 224 ms
103,648 KB
testcase_26 AC 115 ms
82,192 KB
testcase_27 AC 70 ms
70,780 KB
testcase_28 AC 359 ms
109,876 KB
testcase_29 AC 357 ms
109,320 KB
testcase_30 AC 358 ms
109,872 KB
testcase_31 AC 358 ms
109,932 KB
testcase_32 AC 382 ms
109,868 KB
testcase_33 AC 364 ms
109,620 KB
testcase_34 AC 358 ms
109,740 KB
testcase_35 AC 359 ms
109,728 KB
testcase_36 AC 356 ms
109,572 KB
testcase_37 AC 359 ms
110,000 KB
testcase_38 AC 362 ms
109,624 KB
testcase_39 AC 365 ms
110,124 KB
testcase_40 AC 381 ms
109,480 KB
testcase_41 AC 362 ms
109,348 KB
testcase_42 AC 360 ms
109,612 KB
testcase_43 AC 37 ms
53,492 KB
testcase_44 AC 43 ms
59,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ternary_search(f, lo, hi) -> float:
    l = lo
    r = hi
    for _ in range(100):
        c1 = (l * 2 + r) / 3
        c2 = (l + r * 2) / 3
        if f(c1) > f(c2):
            l = c1
        else:
            r = c2
    return l


N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))


def f(x):
    res = 0
    for a, b in zip(A, B):
        res += b * abs(x - a)

    return res


lo = min(A)
hi = max(A)
x = int(ternary_search(f, lo, hi))

x_ans = x
v_ans = f(x_ans)
for i in [x-2, x-1, x, x+1, x+2]:
    r = f(i)
    if v_ans > r:
        x_ans = i
        v_ans = r

print(x_ans, v_ans)
0