CF1618G.Trader Problem
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Monocarp plays a computer game (yet again!). This game has a unique trading mechanics.
To trade with a character, Monocarp has to choose one of the items he possesses and trade it for some item the other character possesses. Each item has an integer price. If Monocarp's chosen item has price x , then he can trade it for any item (exactly one item) with price not greater than x+k .
Monocarp initially has n items, the price of the i -th item he has is ai . The character Monocarp is trading with has m items, the price of the i -th item they have is bi . Monocarp can trade with this character as many times as he wants (possibly even zero times), each time exchanging one of his items with one of the other character's items according to the aforementioned constraints. Note that if Monocarp gets some item during an exchange, he can trade it for another item (since now the item belongs to him), and vice versa: if Monocarp trades one of his items for another item, he can get his item back by trading something for it.
You have to answer q queries. Each query consists of one integer, which is the value of k , and asks you to calculate the maximum possible total cost of items Monocarp can have after some sequence of trades, assuming that he can trade an item of cost x for an item of cost not greater than x+k during each trade. Note that the queries are independent: the trades do not actually occur, Monocarp only wants to calculate the maximum total cost he can get.
输入格式
The first line contains three integers n , m and q ( 1≤n,m,q≤2⋅105 ).
The second line contains n integers a1,a2,…,an ( 1≤ai≤109 ) — the prices of the items Monocarp has.
The third line contains m integers b1,b2,…,bm ( 1≤bi≤109 ) — the prices of the items the other character has.
The fourth line contains q integers, where the i -th integer is the value of k for the i -th query ( 0≤k≤109 ).
输出格式
For each query, print one integer — the maximum possible total cost of items Monocarp can have after some sequence of trades, given the value of k from the query.
输入输出样例
输入#1
3 4 5 10 30 15 12 31 14 18 0 1 2 3 4
输出#1
55 56 60 64 64