Two Movies
该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。
题面翻译
题目描述
一个公司发行了两部电影。现在有 位观众,每个人都会看一部这个公司的电影。
每位观众都会对其看的电影进行评分,分数 。电影的总评分是看了此电影的观众对此电影的评分总和。公司的最终得分是这两部电影的总评分的较小值。
已知这些观众对两部电影的评价,你需要给每个人推荐一部电影,使公司的最终得分最大。求这个最大值。
输入格式
第一行一个整数 (),代表输入数据组数。
接下来,对于每组数据,第一行一个整数 ($1 \leqslant n \leqslant 2 \times 10 ^ 5,\sum n \leqslant2\times10^5$),表示观众数。
第二行 个整数 ,代表每位观众对第一部电影的评价()。
第三行 个整数 ,代表每位观众对第二部电影的评价()。
输出格式
一行一个整数,代表公司最终得分的最大值。
题目描述
A movie company has released movies. These movies were watched by people. For each person, we know their attitude towards the first movie (liked it, neutral, or disliked it) and towards the second movie.
If a person is asked to leave a review for the movie, then:
- if that person liked the movie, they will leave a positive review, and the movie's rating will increase by ;
- if that person disliked the movie, they will leave a negative review, and the movie's rating will decrease by ;
- otherwise, they will leave a neutral review, and the movie's rating will not change.
Every person will review exactly one movie — and for every person, you can choose which movie they will review.
The company's rating is the minimum of the ratings of the two movies. Your task is to calculate the maximum possible rating of the company.
输入格式
The first line contains a single integer ( ) — the number of test cases.
The first line of each test case contains a single integer ( ).
The second line contains integers ( ), where is equal to if the first movie was disliked by the -th viewer; equal to if the first movie was liked; and if the attitude is neutral.
The third line contains integers ( ), where is equal to if the second movie was disliked by the -th viewer; equal to if the second movie was liked; and if the attitude is neutral.
Additional constraint on the input: the sum of over all test cases does not exceed .
输出格式
For each test case, print a single integer — the maximum possible rating of the company, if for each person, choose which movie to leave a review on.
样例 #1
样例输入 #1
4
2
-1 1
-1 -1
1
-1
-1
5
0 -1 1 0 1
-1 1 0 0 1
4
-1 -1 -1 1
-1 1 1 1
样例输出 #1
0
-1
1
1