結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー 👑 H20H20
提出日時 2022-03-08 10:21:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,924 bytes
コンパイル時間 1,040 ms
コンパイル使用メモリ 87,276 KB
実行使用メモリ 130,504 KB
最終ジャッジ日時 2023-09-30 15:33:20
合計ジャッジ時間 29,284 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,368 KB
testcase_01 AC 75 ms
72,028 KB
testcase_02 AC 81 ms
76,380 KB
testcase_03 AC 81 ms
76,360 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 81 ms
76,204 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 79 ms
76,304 KB
testcase_11 WA -
testcase_12 AC 80 ms
76,324 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 81 ms
76,156 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 78 ms
71,704 KB
testcase_44 AC 82 ms
76,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
三分探索の抽象化ライブラリ
domain:= 定義域が整数(0)or実数(1)
searchtype:= 狭義に凹で最大値を求めたい(0)or狭義に凸で最小値を求めたい(1)
f:= 最大または最小にしたい値を返す
l,r:= 探索範囲(l<=r)
eps:= 誤差(整数なら2,実数なら誤差指定による)
iter:= 探索回数
op1:= 割り算の演算子
op2:= 反転させるかどうか(0の時反転)
op3:= 出力での反転
value:= 三分探索の解
args:= fの引数(iterable)…f(i,args)という形でargsを展開
'''
from operator import floordiv,truediv,truth,not_
from math import log
class ternary_search:
    def __init__(self,domain,searchtype,f,l,r,eps,args=None):
        self.domain=domain
        self.searchtype=searchtype
        self.f=f
        self.l,self.r=l,r
        self.iter=int(log((r+1-l)/eps,1.5))+5
        self.args=args
        self.op1=[floordiv,truediv][domain]
        self.op2=[not_,truth][searchtype]
        self.op3=[max,min][searchtype]
        self.value=self.calc()
    def calc(self):
        for _ in range(self.iter):
            diff=self.op1(self.r-self.l,3)
            trisection1=self.l+diff
            trisection2=self.r-diff
            trisection1_value=self.f(trisection1,self.args)
            trisection2_value=self.f(trisection2,self.args)
            if self.op2(trisection1_value<=trisection2_value):
                self.r=trisection2
            if self.op2(trisection1_value>=trisection2_value):
                self.l=trisection1
        return self.op3([self.l,self.l+self.op1(self.r-self.l,2),self.r],key=lambda x:self.f(x,self.args))

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split())) 
X = 0
def f(x,arg):
    global X
    X = x
    ret=0
    for i in range(N):
        ret+=B[i]*abs(A[i]-x)
    return ret
e=ternary_search(1,1,f,0,10**20,10**(-7))
print('{:f}'.format(X),int(f(e.value,None)+0.5))
0