CF994B.Knights of a Polygonal Table

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Unlike Knights of a Round Table, Knights of a Polygonal Table deprived of nobility and happy to kill each other. But each knight has some power and a knight can kill another knight if and only if his power is greater than the power of victim. However, even such a knight will torment his conscience, so he can kill no more than kk other knights. Also, each knight has some number of coins. After a kill, a knight can pick up all victim's coins.

Now each knight ponders: how many coins he can have if only he kills other knights?

You should answer this question for each knight.

输入格式

The first line contains two integers nn and kk (1n105,0kmin(n1,10))(1 \le n \le 10^5, 0 \le k \le \min(n-1,10)) — the number of knights and the number kk from the statement.

The second line contains nn integers p1,p2,,pnp_1, p_2 ,\ldots,p_n (1pi109)(1 \le p_i \le 10^9) — powers of the knights. All pip_i are distinct.

The third line contains nn integers c1,c2,,cnc_1, c_2 ,\ldots,c_n (0ci109)(0 \le c_i \le 10^9) — the number of coins each knight has.

输出格式

Print nn integers — the maximum number of coins each knight can have it only he kills other knights.

输入输出样例

  • 输入#1

    4 2
    4 5 9 7
    1 2 11 33
    

    输出#1

    1 3 46 36 
  • 输入#2

    5 1
    1 2 3 4 5
    1 2 3 4 5
    

    输出#2

    1 3 5 7 9 
  • 输入#3

    1 0
    2
    3
    

    输出#3

    3 

说明/提示

Consider the first example.

  • The first knight is the weakest, so he can't kill anyone. That leaves him with the only coin he initially has.
  • The second knight can kill the first knight and add his coin to his own two.
  • The third knight is the strongest, but he can't kill more than k=2k = 2 other knights. It is optimal to kill the second and the fourth knights: 2+11+33=462+11+33 = 46 .
  • The fourth knight should kill the first and the second knights: 33+1+2=3633+1+2 = 36 .

In the second example the first knight can't kill anyone, while all the others should kill the one with the index less by one than their own.

In the third example there is only one knight, so he can't kill anyone.

首页