CF557C.Arthur and Table

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Arthur has bought a beautiful big table into his new flat. When he came home, Arthur noticed that the new table is unstable.

In total the table Arthur bought has nn legs, the length of the ii -th leg is lil_{i} .

Arthur decided to make the table stable and remove some legs. For each of them Arthur determined number did_{i} — the amount of energy that he spends to remove the ii -th leg.

A table with kk legs is assumed to be stable if there are more than half legs of the maximum length. For example, to make a table with 55 legs stable, you need to make sure it has at least three (out of these five) legs of the maximum length. Also, a table with one leg is always stable and a table with two legs is stable if and only if they have the same lengths.

Your task is to help Arthur and count the minimum number of energy units Arthur should spend on making the table stable.

输入格式

The first line of the input contains integer nn ( 1<=n<=1051<=n<=10^{5} ) — the initial number of legs in the table Arthur bought.

The second line of the input contains a sequence of nn integers lil_{i} ( 1<=li<=1051<=l_{i}<=10^{5} ), where lil_{i} is equal to the length of the ii -th leg of the table.

The third line of the input contains a sequence of nn integers did_{i} ( 1<=di<=2001<=d_{i}<=200 ), where did_{i} is the number of energy units that Arthur spends on removing the ii -th leg off the table.

输出格式

Print a single integer — the minimum number of energy units that Arthur needs to spend in order to make the table stable.

输入输出样例

  • 输入#1

    2
    1 5
    3 2
    

    输出#1

    2
    
  • 输入#2

    3
    2 4 4
    1 1 1
    

    输出#2

    0
    
  • 输入#3

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

    输出#3

    8
    
首页