結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー tonyu0tonyu0
提出日時 2020-10-10 00:35:48
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 580 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,000 KB
最終ジャッジ日時 2024-07-20 15:01:03
合計ジャッジ時間 21,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 42
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
s = sum(B)
ab = []
for i in range(n):
    ab.append((A[i], B[i]))
ab.sort()
# med番目が中央値
med = (s + 1) // 2
now = 0
for i in range(n):
    now += ab[i][1]
    if now >= med:
        x = ab[i][0]
        y = sum(b * abs(a - x) for a, b in ab)
        print(x, y)
        exit()
0