A11986 | Gambling
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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 \le n \le 100\,000$ ) — the sizes of the list.
The second line contains $n$ integers $a_i$ ( $1 \le a_i \le 10^6$ ), describing the list of the player A, who starts the game.
The third line contains $n$ integers $b_i$ ( $1 \le b_i \le 10^6$ ), describing the list of the player B.
The second line contains $n$ integers $a_i$ ( $1 \le a_i \le 10^6$ ), describing the list of the player A, who starts the game.
The third line contains $n$ integers $b_i$ ( $1 \le b_i \le 10^6$ ), 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$ .
- 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$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted