結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー noriocnorioc
提出日時 2024-06-20 05:10:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 109,976 KB
最終ジャッジ日時 2024-06-20 05:11:09
合計ジャッジ時間 19,796 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,904 KB
testcase_01 AC 36 ms
52,948 KB
testcase_02 AC 41 ms
59,316 KB
testcase_03 AC 41 ms
58,776 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 40 ms
58,616 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 40 ms
59,376 KB
testcase_11 WA -
testcase_12 AC 41 ms
59,912 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 41 ms
60,404 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 310 ms
104,996 KB
testcase_20 AC 199 ms
103,500 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 205 ms
103,808 KB
testcase_26 WA -
testcase_27 AC 61 ms
66,928 KB
testcase_28 AC 331 ms
109,508 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 334 ms
109,504 KB
testcase_33 AC 332 ms
109,512 KB
testcase_34 AC 332 ms
109,376 KB
testcase_35 AC 330 ms
109,504 KB
testcase_36 WA -
testcase_37 AC 350 ms
109,508 KB
testcase_38 AC 332 ms
109,376 KB
testcase_39 AC 333 ms
109,376 KB
testcase_40 AC 331 ms
109,976 KB
testcase_41 AC 331 ms
109,480 KB
testcase_42 WA -
testcase_43 AC 40 ms
54,212 KB
testcase_44 AC 41 ms
58,992 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 = ternary_search(f, lo, hi)
x = int(x + 0.5)
print(x, f(x))
0