CF1132B.Discounts

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You came to a local shop and want to buy some chocolate bars. There are nn bars in the shop, ii -th of them costs aia_i coins (and you want to buy all of them).

You have mm different coupons that allow you to buy chocolate bars. ii -th coupon allows you to buy qiq_i chocolate bars while you have to pay only for the qi1q_i - 1 most expensive ones (so, the cheapest bar of those qiq_i bars is for free).

You can use only one coupon; if you use coupon ii , you have to choose qiq_i bars and buy them using the coupon, and buy all the remaining nqin - q_i bars without any discounts.

To decide which coupon to choose, you want to know what will be the minimum total amount of money you have to pay if you use one of the coupons optimally.

输入格式

The first line contains one integer nn ( 2n31052 \le n \le 3 \cdot 10^5 ) — the number of chocolate bars in the shop.

The second line contains nn integers a1a_1 , a2a_2 , ..., ana_n ( 1ai1091 \le a_i \le 10^9 ), where aia_i is the cost of ii -th chocolate bar.

The third line contains one integer mm ( 1mn11 \le m \le n - 1 ) — the number of coupons you have.

The fourth line contains mm integers q1q_1 , q2q_2 , ..., qmq_m ( 2qin2 \le q_i \le n ), where qiq_i is the number of chocolate bars you have to buy using ii -th coupon so that the least expensive of them will be for free. All values of qiq_i are pairwise distinct.

输出格式

Print mm integers, ii -th of them should be the minimum amount of money you have to pay if you buy qiq_i bars with ii -th coupon, and all the remaining bars one by one for their full price.

输入输出样例

  • 输入#1

    7
    7 1 3 1 4 10 8
    2
    3 4
    

    输出#1

    27
    30
    

说明/提示

Consider the first example.

If we use the first coupon, we may choose chocolate bars having indices 11 , 66 and 77 , and we pay 1818 coins for them and 99 coins for all other bars.

If we use the second coupon, we may choose chocolate bars having indices 11 , 55 , 66 and 77 , and we pay 2525 coins for them and 55 coins for all other bars.

首页