A10476 | Memory and Casinos
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ casinos lined in a row. If Memory plays at casino $i$ , he has probability $p_{i}$ to win and move to the casino on the right ( $i+1$ ) or exit the row (if $i=n$ ), and a probability $1-p_{i}$ to lose and move to the casino on the left ( $i-1$ ) or also exit the row (if $i=1$ ).
We say that Memory dominates on the interval $i...\ j$ if he completes a walk such that,
- He starts on casino $i$ .
- He never looses in casino $i$ .
- He finishes his walk by winning in casino $j$ .
Note that Memory can still walk left of the $1$ -st casino and right of the casino $n$ and that always finishes the process.
Now Memory has some requests, in one of the following forms:
- $1$ $i$ $a$ $b$ : Set .
- $2$ $l$ $r$ : Print the probability that Memory will dominate on the interval $l...\ r$ , i.e. compute the probability that Memory will first leave the segment $l...\ r$ after winning at casino $r$ , if she starts in casino $l$ .
It is guaranteed that at any moment of time $p$ is a non-decreasing sequence, i.e. $p_{i}<=p_{i+1}$ for all $i$ from $1$ to $n-1$ .
Please help Memory by answering all his requests!
We say that Memory dominates on the interval $i...\ j$ if he completes a walk such that,
- He starts on casino $i$ .
- He never looses in casino $i$ .
- He finishes his walk by winning in casino $j$ .
Note that Memory can still walk left of the $1$ -st casino and right of the casino $n$ and that always finishes the process.
Now Memory has some requests, in one of the following forms:
- $1$ $i$ $a$ $b$ : Set .
- $2$ $l$ $r$ : Print the probability that Memory will dominate on the interval $l...\ r$ , i.e. compute the probability that Memory will first leave the segment $l...\ r$ after winning at casino $r$ , if she starts in casino $l$ .
It is guaranteed that at any moment of time $p$ is a non-decreasing sequence, i.e. $p_{i}<=p_{i+1}$ for all $i$ from $1$ to $n-1$ .
Please help Memory by answering all his requests!
输入格式
The first line of the input contains two integers $n$ and $q$ ( $1<=n,q<=100000$ ), — number of casinos and number of requests respectively.
The next $n$ lines each contain integers $a_{i}$ and $b_{i}$ ( $1<=a_{i}<b_{i}<=10^{9}$ ) —  is the probability $p_{i}$ of winning in casino $i$ .
The next $q$ lines each contain queries of one of the types specified above ( $1<=a<b<=10^{9}$ , $1<=i<=n$ , $1<=l<=r<=n$ ).
It's guaranteed that there will be at least one query of type $2$ , i.e. the output will be non-empty. Additionally, it is guaranteed that $p$ forms a non-decreasing sequence at all times.
The next $n$ lines each contain integers $a_{i}$ and $b_{i}$ ( $1<=a_{i}<b_{i}<=10^{9}$ ) —  is the probability $p_{i}$ of winning in casino $i$ .
The next $q$ lines each contain queries of one of the types specified above ( $1<=a<b<=10^{9}$ , $1<=i<=n$ , $1<=l<=r<=n$ ).
It's guaranteed that there will be at least one query of type $2$ , i.e. the output will be non-empty. Additionally, it is guaranteed that $p$ forms a non-decreasing sequence at all times.
输出格式
Print a real number for every request of type $2$ — the probability that boy will "dominate" on that interval. Your answer will be considered correct if its absolute error does not exceed $10^{-4}$ .
Namely: let's assume that one of your answers is $a$ , and the corresponding answer of the jury is $b$ . The checker program will consider your answer correct if $|a-b|<=10^{-4}$ .
Namely: let's assume that one of your answers is $a$ , and the corresponding answer of the jury is $b$ . The checker program will consider your answer correct if $|a-b|<=10^{-4}$ .
输入输出样例
输入 #1
3 13 1 3 1 2 2 3 2 1 1 2 1 2 2 1 3 2 2 2 2 2 3 2 3 3 1 2 2 3 2 1 1 2 1 2 2 1 3 2 2 2 2 2 3 2 3 3
输出 #1
0.3333333333 0.2000000000 0.1666666667 0.5000000000 0.4000000000 0.6666666667 0.3333333333 0.2500000000 0.2222222222 0.6666666667 0.5714285714 0.6666666667
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted