CF1038C.Gambling
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Two players A and B have a list of n integers each. They both want to maximize the subtraction between their score and their opponent's score.
In one turn, a player can either add to his score any element from his list (assuming his list is not empty), the element is removed from the list afterward. Or remove an element from his opponent's list (assuming his opponent's list is not empty).
Note, that in case there are equal elements in the list only one of them will be affected in the operations above. For example, if there are elements {1,2,2,3} in a list and you decided to choose 2 for the next turn, only a single instance of 2 will be deleted (and added to the score, if necessary).
The player A starts the game and the game stops when both lists are empty. Find the difference between A's score and B's score at the end of the game, if both of the players are playing optimally.
Optimal play between two players means that both players choose the best possible strategy to achieve the best possible outcome for themselves. In this problem, it means that each player, each time makes a move, which maximizes the final difference between his score and his opponent's score, knowing that the opponent is doing the same.
输入格式
The first line of input contains an integer n ( 1≤n≤100000 ) — the sizes of the list.
The second line contains n integers ai ( 1≤ai≤106 ), describing the list of the player A, who starts the game.
The third line contains n integers bi ( 1≤bi≤106 ), describing the list of the player B.
输出格式
Output the difference between A's score and B's score ( A−B ) if both of them are playing optimally.
输入输出样例
输入#1
2 1 4 5 1
输出#1
0
输入#2
3 100 100 100 100 100 100
输出#2
0
输入#3
2 2 1 5 6
输出#3
-3
说明/提示
In the first example, the game could have gone as follows:
- A removes 5 from B's list.
- B removes 4 from A's list.
- A takes his 1 .
- B takes his 1 .
Hence, A's score is 1 , B's score is 1 and difference is 0 .
There is also another optimal way of playing:
- A removes 5 from B's list.
- B removes 4 from A's list.
- A removes 1 from B's list.
- B removes 1 from A's list.
The difference in the scores is still 0 .
In the second example, irrespective of the moves the players make, they will end up with the same number of numbers added to their score, so the difference will be 0 .