結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-09 22:30:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 702 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 148,820 KB
最終ジャッジ日時 2024-07-20 12:50:58
合計ジャッジ時間 25,951 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 40 ms
52,224 KB
testcase_16 AC 39 ms
52,096 KB
testcase_17 AC 40 ms
52,224 KB
testcase_18 AC 667 ms
144,860 KB
testcase_19 AC 638 ms
130,912 KB
testcase_20 AC 388 ms
128,400 KB
testcase_21 AC 88 ms
77,440 KB
testcase_22 AC 425 ms
125,328 KB
testcase_23 AC 79 ms
76,416 KB
testcase_24 AC 529 ms
136,496 KB
testcase_25 AC 412 ms
129,640 KB
testcase_26 AC 165 ms
87,808 KB
testcase_27 AC 82 ms
76,416 KB
testcase_28 AC 694 ms
148,400 KB
testcase_29 AC 683 ms
148,400 KB
testcase_30 AC 688 ms
148,196 KB
testcase_31 AC 702 ms
148,400 KB
testcase_32 AC 696 ms
148,564 KB
testcase_33 AC 692 ms
148,576 KB
testcase_34 AC 689 ms
148,820 KB
testcase_35 AC 692 ms
148,244 KB
testcase_36 AC 687 ms
148,792 KB
testcase_37 AC 685 ms
148,388 KB
testcase_38 AC 696 ms
148,448 KB
testcase_39 AC 673 ms
148,572 KB
testcase_40 AC 677 ms
148,440 KB
testcase_41 AC 678 ms
148,196 KB
testcase_42 AC 686 ms
148,704 KB
testcase_43 AC 39 ms
51,968 KB
testcase_44 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

AB = []
for a, b in zip(A, B):
    AB.append((a, b))
AB.sort()
B_ = []
for _, b in AB:
    B_.append(b)

mab = []
for a, b in AB:
    mab.append(a*b)

from itertools import accumulate
cumb = [0]+B_
cumb = list(accumulate(cumb))

cumab = [0]+mab
cumab = list(accumulate(cumab))

m = 10**19
ans = -10**18
for i in range(n):
    x = AB[i][0]
    #temp1 = 0
    #for a, b in AB:
        #temp1 += b*abs(x-a)
    temp = 0
    temp = (cumb[i]-cumb[0]-cumb[n]+cumb[i])*x
    temp += -cumab[i]+cumab[0]+(cumab[n]-cumab[i])
    #print(x, temp1, temp)
    if temp <= m:
        ans = x
        m = temp
print(ans, m)
0