CF1467C.Three Bags
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given three bags. Each bag contains a non-empty multiset of numbers. You can perform a number of operations on these bags. In one operation, you can choose any two non-empty bags, and choose one number from each of the bags. Let's say that you choose number a from the first bag and number b from the second bag. Then, you remove b from the second bag and replace a with a−b in the first bag. Note that if there are multiple occurrences of these numbers, then you shall only remove/replace exactly one occurrence.
You have to perform these operations in such a way that you have exactly one number remaining in exactly one of the bags (the other two bags being empty). It can be shown that you can always apply these operations to receive such a configuration in the end. Among all these configurations, find the one which has the maximum number left in the end.
输入格式
The first line of the input contains three space-separated integers n1 , n2 and n3 ( 1≤n1,n2,n3≤3⋅105 , 1≤n1+n2+n3≤3⋅105 ) — the number of numbers in the three bags.
The i -th of the next three lines contain ni space-separated integers ai,1 , ai,2 , ..., ai,ni ( 1≤ai,j≤109 ) — the numbers in the i -th bag.
输出格式
Print a single integer — the maximum number which you can achieve in the end.
输入输出样例
输入#1
2 4 1 1 2 6 3 4 5 5
输出#1
20
输入#2
3 2 2 7 5 4 2 9 7 1
输出#2
29
说明/提示
In the first example input, let us perform the following operations:
[1,2],[6,3,4,5],[5]
[−5,2],[3,4,5],[5] (Applying an operation to (1,6) )
[−10,2],[3,4],[5] (Applying an operation to (−5,5) )
[2],[3,4],[15] (Applying an operation to (5,−10) )
[−1],[4],[15] (Applying an operation to (2,3) )
[−5],[],[15] (Applying an operation to (−1,4) )
[],[],[20] (Applying an operation to (15,−5) )
You can verify that you cannot achieve a bigger number. Hence, the answer is 20 .