結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー uni_python
提出日時 2020-10-09 22:18:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 955 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 108,520 KB
最終ジャッジ日時 2024-07-20 12:20:34
合計ジャッジ時間 36,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 3 WA * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    import bisect
    
    N=I()
    A=LI()
    B=LI()
    
    def calc(x):
        temp=0
        for i in range(N):
            temp+=B[i]*abs(x-A[i])
        return temp
        
    
    M=10**6+5
    left=-M
    right=M
    
    for i in range(500):
        c1=(2*left+right)/3
        c2=(left+2*right)/3
        
        if calc(c1)<calc(c2):
            right=c2
        else:
            left=c1
            
            
    aaa=int((right+left)/2)
    
    ans=calc(left)
    ansx=left
    
    rr=calc(right)
    if rr<ans:
        ans=rr
        ansx=right
    
    for i in range(100):
        ii=i-50
        x=aaa+0.5*ii
        temp=calc(x)
        if temp<ans:
            ans=temp
            ansx=x
            
    print(ansx,int(ans))
    
        
    


main()
0