CF1253C.Sweets Eating

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Tsumugi brought nn delicious sweets to the Light Music Club. They are numbered from 11 to nn , where the ii -th sweet has a sugar concentration described by an integer aia_i .

Yui loves sweets, but she can eat at most mm sweets each day for health reasons.

Days are 11 -indexed (numbered 1,2,3,1, 2, 3, \ldots ). Eating the sweet ii at the dd -th day will cause a sugar penalty of (dai)(d \cdot a_i) , as sweets become more sugary with time. A sweet can be eaten at most once.

The total sugar penalty will be the sum of the individual penalties of each sweet eaten.

Suppose that Yui chooses exactly kk sweets, and eats them in any order she wants. What is the minimum total sugar penalty she can get?

Since Yui is an undecided girl, she wants you to answer this question for every value of kk between 11 and nn .

输入格式

The first line contains two integers nn and mm ( 1mn200 0001 \le m \le n \le 200\ 000 ).

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 1ai200 0001 \le a_i \le 200\ 000 ).

输出格式

You have to output nn integers x1,x2,,xnx_1, x_2, \ldots, x_n on a single line, separed by spaces, where xkx_k is the minimum total sugar penalty Yui can get if she eats exactly kk sweets.

输入输出样例

  • 输入#1

    9 2
    6 19 3 4 4 2 6 7 8
    

    输出#1

    2 5 11 18 30 43 62 83 121
    
  • 输入#2

    1 1
    7
    

    输出#2

    7
    

说明/提示

Let's analyze the answer for k=5k = 5 in the first example. Here is one of the possible ways to eat 55 sweets that minimize total sugar penalty:

  • Day 11 : sweets 11 and 44
  • Day 22 : sweets 55 and 33
  • Day 33 : sweet 66

Total penalty is 1a1+1a4+2a5+2a3+3a6=6+4+8+6+6=301 \cdot a_1 + 1 \cdot a_4 + 2 \cdot a_5 + 2 \cdot a_3 + 3 \cdot a_6 = 6 + 4 + 8 + 6 + 6 = 30 . We can prove that it's the minimum total sugar penalty Yui can achieve if she eats 55 sweets, hence x5=30x_5 = 30 .

首页