A12009 | Chip Game
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Alice and Bob decided to play one ultimate game. They have $n$ piles, the $i$ -th pile initially contain $v_i$ chips. Alice selects a positive integer $a$ from interval $[1, m]$ , and Bob selects a number $b$ the same way.
Then the game starts. In her turn, Alice can select any pile containing at least $a$ chips, and remove exactly $a$ chips from it. Similarly, in his turn, Bob can choose any pile with at least $b$ chips, and remove exactly $b$ chips from it. If a player cannot make a move, he or she loses.
If both players play optimally, the outcome ultimately depends on the choice of $a$ and $b$ , and on the starting player. Consider a fixed pair $(a,b)$ . There are four types of games:
- Alice wins, regardless of who starts.
- Bob wins, regardless of who starts.
- If Alice starts, she wins. If Bob starts, he wins. We say that the first player wins.
- If Alice starts, Bob wins. If Bob starts, Alice wins. We say that the second player wins.
Among all choices of $a$ and $b$ (i.e. for each pair $(a, b)$ such that $1\leq a, b\leq m$ ), determine how many games are won by Alice (regardless of who starts), how many are won by Bob (regardless of who starts), how many are won by the first player, and how many are won by the second player.
Then the game starts. In her turn, Alice can select any pile containing at least $a$ chips, and remove exactly $a$ chips from it. Similarly, in his turn, Bob can choose any pile with at least $b$ chips, and remove exactly $b$ chips from it. If a player cannot make a move, he or she loses.
If both players play optimally, the outcome ultimately depends on the choice of $a$ and $b$ , and on the starting player. Consider a fixed pair $(a,b)$ . There are four types of games:
- Alice wins, regardless of who starts.
- Bob wins, regardless of who starts.
- If Alice starts, she wins. If Bob starts, he wins. We say that the first player wins.
- If Alice starts, Bob wins. If Bob starts, Alice wins. We say that the second player wins.
Among all choices of $a$ and $b$ (i.e. for each pair $(a, b)$ such that $1\leq a, b\leq m$ ), determine how many games are won by Alice (regardless of who starts), how many are won by Bob (regardless of who starts), how many are won by the first player, and how many are won by the second player.
输入格式
The first line contains two integers $n$ and $m$ ( $1 \leq n \leq 100, 1 \leq m \leq 10^5$ ) — the number of piles, and the upper bound on the number of chips allowed to be taken in one turn, respectively.
The second line contains $n$ integers $v_1, v_2, \dots, v_n$ ( $1 \leq v_i \leq 10^{18}$ ) — the starting number of chips in each pile.
The second line contains $n$ integers $v_1, v_2, \dots, v_n$ ( $1 \leq v_i \leq 10^{18}$ ) — the starting number of chips in each pile.
输出格式
Print a single line containing four integers $w_a$ , $w_b$ , $w_f$ , $w_s$ — the number of games won by Alice, Bob, the first player, the second player, respectively.
输入输出样例
输入 #1
2 2 4 5
输出 #1
1 1 1 1
输入 #2
2 20 4 5
输出 #2
82 82 6 230
In the first sample, there are a total of four choices for the tuple $(a,b)$ .
- $a = b = 1$ : It does not matter from which pile the chips are removed — there are $9$ turns to be made, and the first player also makes the last, and hence he wins.
- $a = b = 2$ : The second player may win by always selecting the same pile as the first before there are $0$ and $1$ chips in the piles. Since it is impossible to remove $2$ chips from any of them, the first player loses.
- $a = 1$ and $b = 2$ :
- Suppose Alice starts. She can win by removing a single chip from the pile with $5$ chips and then copying Bob's decision. After the next four turns, the game ends with $1$ chip in each pile and Bob unable to make a move.
- Suppose Bob starts. If he removes two chips from second pile, Alice counters by removing a chip from the first pile. From then on, she can always copy Bob's decision and win. If Bob removes two chips from the first pile in his first turn, Alice can also remove one. As the first pile only has one chip left, Bob is forced to remove two chips from the second pile, leaving $3$ . Regardless of what Alice does, she wins.
Hence, Alice wins no matter who starts.
- $a = 2$ and $b = 1$ : This is symmetric with the previous case — hence Bob always wins.
In the second sample, a lot of games, e.g. $a = 7$ and $b = 6$ , end without anybody being able to remove single chip — which counts as a win for the second player. The games won for the first player are $(1, 1)$ , $(1, 4)$ , $(2, 3)$ , $(3, 2)$ , $(4, 1)$ , and $(5, 5)$ .
- $a = b = 1$ : It does not matter from which pile the chips are removed — there are $9$ turns to be made, and the first player also makes the last, and hence he wins.
- $a = b = 2$ : The second player may win by always selecting the same pile as the first before there are $0$ and $1$ chips in the piles. Since it is impossible to remove $2$ chips from any of them, the first player loses.
- $a = 1$ and $b = 2$ :
- Suppose Alice starts. She can win by removing a single chip from the pile with $5$ chips and then copying Bob's decision. After the next four turns, the game ends with $1$ chip in each pile and Bob unable to make a move.
- Suppose Bob starts. If he removes two chips from second pile, Alice counters by removing a chip from the first pile. From then on, she can always copy Bob's decision and win. If Bob removes two chips from the first pile in his first turn, Alice can also remove one. As the first pile only has one chip left, Bob is forced to remove two chips from the second pile, leaving $3$ . Regardless of what Alice does, she wins.
Hence, Alice wins no matter who starts.
- $a = 2$ and $b = 1$ : This is symmetric with the previous case — hence Bob always wins.
In the second sample, a lot of games, e.g. $a = 7$ and $b = 6$ , end without anybody being able to remove single chip — which counts as a win for the second player. The games won for the first player are $(1, 1)$ , $(1, 4)$ , $(2, 3)$ , $(3, 2)$ , $(4, 1)$ , and $(5, 5)$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted