A14293 | Omkar and Akmar
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Omkar and Akmar are playing a game on a circular board with $n$ ( $2 \leq n \leq 10^6$ ) cells. The cells are numbered from $1$ to $n$ so that for each $i$ ( $1 \leq i \leq n-1$ ) cell $i$ is adjacent to cell $i+1$ and cell $1$ is adjacent to cell $n$ . Initially, each cell is empty.
Omkar and Akmar take turns placing either an A or a B on the board, with Akmar going first. The letter must be placed on an empty cell. In addition, the letter cannot be placed adjacent to a cell containing the same letter.
A player loses when it is their turn and there are no more valid moves.
Output the number of possible distinct games where both players play optimally modulo $10^9+7$ . Note that we only consider games where some player has lost and there are no more valid moves.
Two games are considered distinct if the number of turns is different or for some turn, the letter or cell number that the letter is placed on were different.
A move is considered optimal if the move maximizes the player's chance of winning, assuming the other player plays optimally as well. More formally, if the player who has to move has a winning strategy, they have to make a move after which they will still have a winning strategy. If they do not, they can make any move.
Omkar and Akmar take turns placing either an A or a B on the board, with Akmar going first. The letter must be placed on an empty cell. In addition, the letter cannot be placed adjacent to a cell containing the same letter.
A player loses when it is their turn and there are no more valid moves.
Output the number of possible distinct games where both players play optimally modulo $10^9+7$ . Note that we only consider games where some player has lost and there are no more valid moves.
Two games are considered distinct if the number of turns is different or for some turn, the letter or cell number that the letter is placed on were different.
A move is considered optimal if the move maximizes the player's chance of winning, assuming the other player plays optimally as well. More formally, if the player who has to move has a winning strategy, they have to make a move after which they will still have a winning strategy. If they do not, they can make any move.
输入格式
The only line will contain an integer $n$ ( $2 \leq n \leq 10^6$ ) — the number of cells on the board.
输出格式
Output a single integer — the number of possible distinct games where both players play optimally modulo $10^9+7$ .
输入输出样例
输入 #1
2
输出 #1
4
输入 #2
69420
输出 #2
629909355
输入 #3
42069
输出 #3
675837193
For the first sample case, the first player has $4$ possible moves. No matter what the first player plays, the second player only has $1$ possible move, so there are $4$ possible games.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted