A15205 | Game of AI (hard version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This is the hard version of this problem. The difference between easy and hard versions is the constraint on $k$ and the time limit. Notice that you need to calculate the answer for all positive integers $n \in [1,k]$ in this version. You can make hacks only if both versions of the problem are solved.
Cirno is playing a war simulator game with $n$ towers (numbered from $1$ to $n$ ) and $n$ bots (numbered from $1$ to $n$ ). The $i$ -th tower is initially occupied by the $i$ -th bot for $1 \le i \le n$ .
Before the game, Cirno first chooses a permutation $p = [p_1, p_2, \ldots, p_n]$ of length $n$ (A permutation of length $n$ is an array of length $n$ where each integer between $1$ and $n$ appears exactly once). After that, she can choose a sequence $a = [a_1, a_2, \ldots, a_n]$ ( $1 \le a_i \le n$ and $a_i \ne i$ for all $1 \le i \le n$ ).
The game has $n$ rounds of attacks. In the $i$ -th round, if the $p_i$ -th bot is still in the game, it will begin its attack, and as the result the $a_{p_i}$ -th tower becomes occupied by the $p_i$ -th bot; the bot that previously occupied the $a_{p_i}$ -th tower will no longer occupy it. If the $p_i$ -th bot is not in the game, nothing will happen in this round.
After each round, if a bot doesn't occupy any towers, it will be eliminated and leave the game. Please note that no tower can be occupied by more than one bot, but one bot can occupy more than one tower during the game.
At the end of the game, Cirno will record the result as a sequence $b = [b_1, b_2, \ldots, b_n]$ , where $b_i$ is the number of the bot that occupies the $i$ -th tower at the end of the game.
However, as a mathematics master, she wants you to solve the following counting problem instead of playing games:
Count the number of different pairs of sequences $a$ , $b$ from all possible choices of sequence $a$ and permutation $p$ .
Calculate the answers for all $n$ such that $1 \le n \le k$ . Since these numbers may be large, output them modulo $M$ .
Cirno is playing a war simulator game with $n$ towers (numbered from $1$ to $n$ ) and $n$ bots (numbered from $1$ to $n$ ). The $i$ -th tower is initially occupied by the $i$ -th bot for $1 \le i \le n$ .
Before the game, Cirno first chooses a permutation $p = [p_1, p_2, \ldots, p_n]$ of length $n$ (A permutation of length $n$ is an array of length $n$ where each integer between $1$ and $n$ appears exactly once). After that, she can choose a sequence $a = [a_1, a_2, \ldots, a_n]$ ( $1 \le a_i \le n$ and $a_i \ne i$ for all $1 \le i \le n$ ).
The game has $n$ rounds of attacks. In the $i$ -th round, if the $p_i$ -th bot is still in the game, it will begin its attack, and as the result the $a_{p_i}$ -th tower becomes occupied by the $p_i$ -th bot; the bot that previously occupied the $a_{p_i}$ -th tower will no longer occupy it. If the $p_i$ -th bot is not in the game, nothing will happen in this round.
After each round, if a bot doesn't occupy any towers, it will be eliminated and leave the game. Please note that no tower can be occupied by more than one bot, but one bot can occupy more than one tower during the game.
At the end of the game, Cirno will record the result as a sequence $b = [b_1, b_2, \ldots, b_n]$ , where $b_i$ is the number of the bot that occupies the $i$ -th tower at the end of the game.
However, as a mathematics master, she wants you to solve the following counting problem instead of playing games:
Count the number of different pairs of sequences $a$ , $b$ from all possible choices of sequence $a$ and permutation $p$ .
Calculate the answers for all $n$ such that $1 \le n \le k$ . Since these numbers may be large, output them modulo $M$ .
输入格式
The only line contains two positive integers $k$ and $M$ ( $1\le k\le 10^5$ , $2\le M\le 10^9$ ). It is guaranteed that $2^{18}$ is a divisor of $M-1$ and $M$ is a prime number.
输出格式
Output $k$ lines, where the $i$ -th line contains a non-negative integer, which is the answer for $n=i$ modulo $M$ .
输入输出样例
输入 #1
8 998244353
输出 #1
0 2 24 360 6800 153150 4057452 123391016
输入 #2
2 998244353
输出 #2
2
输入 #3
3 998244353
输出 #3
24
输入 #4
8 998244353
输出 #4
123391016
For $n=1$ , no valid sequence $a$ exists. We regard the answer as $0$ .
For $n=2$ , there is only one possible array $a$ : $[2, 1]$ .
- For array $a$ is $[2, 1]$ and permutation $p$ is $[1, 2]$ , the sequence $b$ will be $[1, 1]$ after all rounds have finished. The details for each rounds:
- In the first round, the first bot will begin its attack and successfully capture the tower $2$ . After this round, the second bot will be eliminated and leave the game as all of its towers are occupied by other bots.
- In the second round, the second bot is not in the game.
- For array $a$ is $[2, 1]$ and permutation $p$ is $[2, 1]$ , the sequence $b$ will be $[2, 2]$ after all rounds have finished. The details for each rounds:
- In the first round, the second bot will begin its attack and successfully capture the tower $1$ . After this round, the first bot will be eliminated and leave the game as all of its towers are occupied by other bots.
- In the second round, the first bot is not in the game.
So the number of different pairs of sequences $(a,b)$ is $2$ ( $[2, 1]$ , $[1, 1]$ and $[2, 1]$ , $[2, 2]$ ) for $n=2$ .
For $n=2$ , there is only one possible array $a$ : $[2, 1]$ .
- For array $a$ is $[2, 1]$ and permutation $p$ is $[1, 2]$ , the sequence $b$ will be $[1, 1]$ after all rounds have finished. The details for each rounds:
- In the first round, the first bot will begin its attack and successfully capture the tower $2$ . After this round, the second bot will be eliminated and leave the game as all of its towers are occupied by other bots.
- In the second round, the second bot is not in the game.
- For array $a$ is $[2, 1]$ and permutation $p$ is $[2, 1]$ , the sequence $b$ will be $[2, 2]$ after all rounds have finished. The details for each rounds:
- In the first round, the second bot will begin its attack and successfully capture the tower $1$ . After this round, the first bot will be eliminated and leave the game as all of its towers are occupied by other bots.
- In the second round, the first bot is not in the game.
So the number of different pairs of sequences $(a,b)$ is $2$ ( $[2, 1]$ , $[1, 1]$ and $[2, 1]$ , $[2, 2]$ ) for $n=2$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted