A13257 | LCC
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
An infinitely long Line Chillland Collider (LCC) was built in Chillland. There are $n$ pipes with coordinates $x_i$ that are connected to LCC. When the experiment starts at time 0, $i$ -th proton flies from the $i$ -th pipe with speed $v_i$ . It flies to the right with probability $p_i$ and flies to the left with probability $(1 - p_i)$ . The duration of the experiment is determined as the time of the first collision of any two protons. In case there is no collision, the duration of the experiment is considered to be zero.
Find the expected value of the duration of the experiment.
Illustration for the first example
Find the expected value of the duration of the experiment.
Illustration for the first example
输入格式
The first line of input contains one integer $n$ — the number of pipes ( $1 \le n \le 10^5$ ). Each of the following $n$ lines contains three integers $x_i$ , $v_i$ , $p_i$ — the coordinate of the $i$ -th pipe, the speed of the $i$ -th proton and the probability that the $i$ -th proton flies to the right in percentage points ( $-10^9 \le x_i \le 10^9, 1 \le v \le 10^6, 0 \le p_i \le 100$ ). It is guaranteed that all $x_i$ are distinct and sorted in increasing order.
输出格式
It's possible to prove that the answer can always be represented as a fraction $P/Q$ , where $P$ is an integer and $Q$ is a natural number not divisible by $998\,244\,353$ . In this case, print $P \cdot Q^{-1}$ modulo $998\,244\,353$ .
输入输出样例
输入 #1
2 1 1 100 3 1 0
输出 #1
1
输入 #2
3 7 10 0 9 4 86 14 5 100
输出 #2
0
输入 #3
4 6 4 50 11 25 50 13 16 50 15 8 50
输出 #3
150902884
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted