結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー 👑 KazunKazun
提出日時 2021-02-28 05:01:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 1,125 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 109,572 KB
最終ジャッジ日時 2024-10-02 18:10:50
合計ジャッジ時間 21,150 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,704 KB
testcase_01 AC 39 ms
53,492 KB
testcase_02 AC 37 ms
52,760 KB
testcase_03 AC 39 ms
52,892 KB
testcase_04 AC 39 ms
52,432 KB
testcase_05 AC 39 ms
52,976 KB
testcase_06 AC 39 ms
53,564 KB
testcase_07 AC 40 ms
53,204 KB
testcase_08 AC 43 ms
59,040 KB
testcase_09 AC 42 ms
58,660 KB
testcase_10 AC 39 ms
53,884 KB
testcase_11 AC 39 ms
53,236 KB
testcase_12 AC 43 ms
58,580 KB
testcase_13 AC 42 ms
57,980 KB
testcase_14 AC 45 ms
59,104 KB
testcase_15 AC 43 ms
59,804 KB
testcase_16 AC 44 ms
58,788 KB
testcase_17 AC 44 ms
59,024 KB
testcase_18 AC 332 ms
108,760 KB
testcase_19 AC 307 ms
104,580 KB
testcase_20 AC 208 ms
102,988 KB
testcase_21 AC 66 ms
68,144 KB
testcase_22 AC 207 ms
103,892 KB
testcase_23 AC 60 ms
65,780 KB
testcase_24 AC 269 ms
102,588 KB
testcase_25 AC 206 ms
103,700 KB
testcase_26 AC 103 ms
77,660 KB
testcase_27 AC 63 ms
66,692 KB
testcase_28 AC 352 ms
109,452 KB
testcase_29 AC 324 ms
108,876 KB
testcase_30 AC 342 ms
109,308 KB
testcase_31 AC 353 ms
108,768 KB
testcase_32 AC 324 ms
109,068 KB
testcase_33 AC 332 ms
109,060 KB
testcase_34 AC 347 ms
109,312 KB
testcase_35 AC 353 ms
109,572 KB
testcase_36 AC 343 ms
109,140 KB
testcase_37 AC 325 ms
108,676 KB
testcase_38 AC 328 ms
109,064 KB
testcase_39 AC 345 ms
108,684 KB
testcase_40 AC 344 ms
108,936 KB
testcase_41 AC 344 ms
109,060 KB
testcase_42 AC 345 ms
109,188 KB
testcase_43 AC 39 ms
52,396 KB
testcase_44 AC 39 ms
52,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Ternary_Search(L,R,f,Integer=True,arg=False,ep=1/(1<<20),Times=50):
    
    if Integer:
        while (R-L)>3:
            a=(2*L+R)//3
            b=(L+2*R)//3
            p=f(a);q=f(b)
            if p<=q:
                R=b
            else:
                L=a

        a=(2*L+R)//3
        b=(L+2*R)//3
    else:
        while (R-L)>=ep and Times:
            Times-=1
            a=(2*L+R)/3
            b=(L+2*R)/3

            p=f(a);q=f(b)
            if p<=q:
                R=b
            else:
                L=a

        a=(2*L+R)/3
        b=(L+2*R)/3

    if arg:
        y=float("inf")
        argx=-1
        for x in [L,a,b,R]:
            p=f(x)
            if y>p:
                y=p
                argx=x
        return y,argx
    else:
        return min(f(L),f(a),f(b),f(R))
#================================================
def f(x):
    X=0
    for a,b in zip(A,B):
        X+=b*abs(x-a)
    return X
#================================================
N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

y,x=Ternary_Search(min(A),max(A),f,True,True)
print(x,y)
0