A13164 | Beautiful Mirrors with queries
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Creatnx has $n$ mirrors, numbered from $1$ to $n$ . Every day, Creatnx asks exactly one mirror "Am I beautiful?". The $i$ -th mirror will tell Creatnx that he is beautiful with probability $\frac{p_i}{100}$ for all $1 \le i \le n$ .
Some mirrors are called checkpoints. Initially, only the $1$ st mirror is a checkpoint. It remains a checkpoint all the time.
Creatnx asks the mirrors one by one, starting from the $1$ -st mirror. Every day, if he asks $i$ -th mirror, there are two possibilities:
- The $i$ -th mirror tells Creatnx that he is beautiful. In this case, if $i = n$ Creatnx will stop and become happy, otherwise he will continue asking the $i+1$ -th mirror next day;
- In the other case, Creatnx will feel upset. The next day, Creatnx will start asking from the checkpoint with a maximal number that is less or equal to $i$ .
There are some changes occur over time: some mirrors become new checkpoints and some mirrors are no longer checkpoints. You are given $q$ queries, each query is represented by an integer $u$ : If the $u$ -th mirror isn't a checkpoint then we set it as a checkpoint. Otherwise, the $u$ -th mirror is no longer a checkpoint.
After each query, you need to calculate [the expected number](https://en.wikipedia.org/wiki/Expected_value) of days until Creatnx becomes happy.
Each of this numbers should be found by modulo $998244353$ . Formally, let $M = 998244353$ . It can be shown that the answer can be expressed as an irreducible fraction $\frac{p}{q}$ , where $p$ and $q$ are integers and $q \not \equiv 0 \pmod{M}$ . Output the integer equal to $p \cdot q^{-1} \bmod M$ . In other words, output such an integer $x$ that $0 \le x < M$ and $x \cdot q \equiv p \pmod{M}$ .
Some mirrors are called checkpoints. Initially, only the $1$ st mirror is a checkpoint. It remains a checkpoint all the time.
Creatnx asks the mirrors one by one, starting from the $1$ -st mirror. Every day, if he asks $i$ -th mirror, there are two possibilities:
- The $i$ -th mirror tells Creatnx that he is beautiful. In this case, if $i = n$ Creatnx will stop and become happy, otherwise he will continue asking the $i+1$ -th mirror next day;
- In the other case, Creatnx will feel upset. The next day, Creatnx will start asking from the checkpoint with a maximal number that is less or equal to $i$ .
There are some changes occur over time: some mirrors become new checkpoints and some mirrors are no longer checkpoints. You are given $q$ queries, each query is represented by an integer $u$ : If the $u$ -th mirror isn't a checkpoint then we set it as a checkpoint. Otherwise, the $u$ -th mirror is no longer a checkpoint.
After each query, you need to calculate [the expected number](https://en.wikipedia.org/wiki/Expected_value) of days until Creatnx becomes happy.
Each of this numbers should be found by modulo $998244353$ . Formally, let $M = 998244353$ . It can be shown that the answer can be expressed as an irreducible fraction $\frac{p}{q}$ , where $p$ and $q$ are integers and $q \not \equiv 0 \pmod{M}$ . Output the integer equal to $p \cdot q^{-1} \bmod M$ . In other words, output such an integer $x$ that $0 \le x < M$ and $x \cdot q \equiv p \pmod{M}$ .
输入格式
The first line contains two integers $n$ , $q$ ( $2 \leq n, q \le 2 \cdot 10^5$ ) — the number of mirrors and queries.
The second line contains $n$ integers: $p_1, p_2, \ldots, p_n$ ( $1 \leq p_i \leq 100$ ).
Each of $q$ following lines contains a single integer $u$ ( $2 \leq u \leq n$ ) — next query.
The second line contains $n$ integers: $p_1, p_2, \ldots, p_n$ ( $1 \leq p_i \leq 100$ ).
Each of $q$ following lines contains a single integer $u$ ( $2 \leq u \leq n$ ) — next query.
输出格式
Print $q$ numbers – the answers after each query by modulo $998244353$ .
输入输出样例
输入 #1
2 2 50 50 2 2
输出 #1
4 6
输入 #2
5 5 10 20 30 40 50 2 3 4 5 3
输出 #2
117 665496274 332748143 831870317 499122211
In the first test after the first query, the first and the second mirrors are checkpoints. Creatnx will ask the first mirror until it will say that he is beautiful, after that he will ask the second mirror until it will say that he is beautiful because the second mirror is a checkpoint. After that, he will become happy. Probabilities that the mirrors will say, that he is beautiful are equal to $\frac{1}{2}$ . So, the expected number of days, until one mirror will say, that he is beautiful is equal to $2$ and the answer will be equal to $4 = 2 + 2$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted