A11879 | The Films
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
In "The Man in the High Castle" world, there are $m$ different film endings.
Abendsen owns a storage and a shelf. At first, he has $n$ ordered films on the shelf. In the $i$ -th month he will do:
1. Empty the storage.
2. Put $k_i \cdot m$ films into the storage, $k_i$ films for each ending.
3. He will think about a question: if he puts all the films from the shelf into the storage, then randomly picks $n$ films (from all the films in the storage) and rearranges them on the shelf, what is the probability that sequence of endings in $[l_i, r_i]$ on the shelf will not be changed? Notice, he just thinks about this question, so the shelf will not actually be changed.
Answer all Abendsen's questions.
Let the probability be fraction $P_i$ . Let's say that the total number of ways to take $n$ films from the storage for $i$ -th month is $A_i$ , so $P_i \cdot A_i$ is always an integer. Print for each month $P_i \cdot A_i \pmod {998244353}$ .
$998244353$ is a prime number and it is equal to $119 \cdot 2^{23} + 1$ .
It is guaranteed that there will be only no more than $100$ different $k$ values.
Abendsen owns a storage and a shelf. At first, he has $n$ ordered films on the shelf. In the $i$ -th month he will do:
1. Empty the storage.
2. Put $k_i \cdot m$ films into the storage, $k_i$ films for each ending.
3. He will think about a question: if he puts all the films from the shelf into the storage, then randomly picks $n$ films (from all the films in the storage) and rearranges them on the shelf, what is the probability that sequence of endings in $[l_i, r_i]$ on the shelf will not be changed? Notice, he just thinks about this question, so the shelf will not actually be changed.
Answer all Abendsen's questions.
Let the probability be fraction $P_i$ . Let's say that the total number of ways to take $n$ films from the storage for $i$ -th month is $A_i$ , so $P_i \cdot A_i$ is always an integer. Print for each month $P_i \cdot A_i \pmod {998244353}$ .
$998244353$ is a prime number and it is equal to $119 \cdot 2^{23} + 1$ .
It is guaranteed that there will be only no more than $100$ different $k$ values.
输入格式
The first line contains three integers $n$ , $m$ , and $q$ ( $1 \le n, m, q \le 10^5$ , $n+q\leq 10^5$ ) — the number of films on the shelf initially, the number of endings, and the number of months.
The second line contains $n$ integers $e_1, e_2, \ldots, e_n$ ( $1\leq e_i\leq m$ ) — the ending of the $i$ -th film on the shelf.
Each of the next $q$ lines contains three integers $l_i$ , $r_i$ , and $k_i$ ( $1 \le l_i \le r_i \le n, 0 \le k_i \le 10^5$ ) — the $i$ -th query.
It is guaranteed that there will be only no more than $100$ different $k$ values.
The second line contains $n$ integers $e_1, e_2, \ldots, e_n$ ( $1\leq e_i\leq m$ ) — the ending of the $i$ -th film on the shelf.
Each of the next $q$ lines contains three integers $l_i$ , $r_i$ , and $k_i$ ( $1 \le l_i \le r_i \le n, 0 \le k_i \le 10^5$ ) — the $i$ -th query.
It is guaranteed that there will be only no more than $100$ different $k$ values.
输出格式
Print the answer for each question in a separate line.
输入输出样例
输入 #1
6 4 4 1 2 3 4 4 4 1 4 0 1 3 2 1 4 2 1 5 2
输出 #1
6 26730 12150 4860
输入 #2
5 5 3 1 2 3 4 5 1 2 100000 1 4 4 3 5 5
输出 #2
494942218 13125 151632
In the first sample in the second query, after adding $2 \cdot m$ films into the storage, the storage will look like this: $\{1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 4, 4\}$ .
There are $26730$ total ways of choosing the films so that $e_l, e_{l+1}, \ldots, e_r$ will not be changed, for example, $[1, 2, 3, 2, 2]$ and $[1, 2, 3, 4, 3]$ are such ways.
There are $2162160$ total ways of choosing the films, so you're asked to print $(\frac{26730}{2162160} \cdot 2162160) \mod 998244353 = 26730$ .
There are $26730$ total ways of choosing the films so that $e_l, e_{l+1}, \ldots, e_r$ will not be changed, for example, $[1, 2, 3, 2, 2]$ and $[1, 2, 3, 4, 3]$ are such ways.
There are $2162160$ total ways of choosing the films, so you're asked to print $(\frac{26730}{2162160} \cdot 2162160) \mod 998244353 = 26730$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted