CF1089L.Lazyland

传统题 时间 2000 ms 内存 256 MiB 4 尝试 1 已通过 1 标签

Lazyland

The kingdom of Lazyland is the home to nn idlers. These idlers are incredibly lazy and create many problems to their ruler, the mighty King of Lazyland.

Today kk important jobs for the kingdom (knk \le n) should be performed. Every job should be done by one person and every person can do at most one job. The King allowed every idler to choose one job they wanted to do and the ii-th idler has chosen the job aia_i.

Unfortunately, some jobs may not be chosen by anyone, so the King has to persuade some idlers to choose another job. The King knows that it takes bib_i minutes to persuade the ii-th idler. He asked his minister of labour to calculate the minimum total time he needs to spend persuading the idlers to get all the jobs done. Can you help him?

Input

The first line of the input contains two integers nn and kk (1kn1051 \le k \le n \le 10^5) — the number of idlers and the number of jobs.

The second line of the input contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n (1aik1 \le a_i \le k) — the jobs chosen by each idler.

The third line of the input contains nn integers b1,b2,,bnb_1, b_2, \ldots, b_n (1bi1091 \le b_i \le 10^9) — the time the King needs to spend to persuade the ii-th idler.

Output

The only line of the output should contain one number — the minimum total time the King needs to spend persuading the idlers to get all the jobs done.

Note

In the first example the optimal plan is to persuade idlers 1, 6, and 8 to do jobs 2, 4, and 6.

In the second example each job was chosen by some idler, so there is no need to persuade anyone.

Samples

8 7
1 1 3 1 5 3 7 1
5 7 4 8 1 3 5 2
10
3 3
3 1 2
5 3 4
0

在线编程 IDE

建议全屏模式获得最佳体验