結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー tanon710tanon710
提出日時 2020-10-15 22:56:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 486 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 125,504 KB
最終ジャッジ日時 2024-07-20 20:04:50
合計ジャッジ時間 23,702 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 42
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ta=list(map(int,input().split()))
tb=list(map(int,input().split()))
ab=[[ta[i],tb[i]] for i in range(n)]
ab=sorted(ab,key=lambda x:x[0])
k=sum(tb)
persuit=(k+1)//2
acum=0
x=-1
for a,b in ab:
    if acum<=persuit<=acum+b:
        x=a
        break
    else:
        acum+=b
ans=0
for a,b in ab:
    ans+=abs(x-a)*b
print(x,ans)
0