A10494 | Student's Camp
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Alex studied well and won the trip to student camp Alushta, located on the seashore.
Unfortunately, it's the period of the strong winds now and there is a chance the camp will be destroyed! Camp building can be represented as the rectangle of $n+2$ concrete blocks height and $m$ blocks width.
Every day there is a breeze blowing from the sea. Each block, except for the blocks of the upper and lower levers, such that there is no block to the left of it is destroyed with the probability . Similarly, each night the breeze blows in the direction to the sea. Thus, each block (again, except for the blocks of the upper and lower levers) such that there is no block to the right of it is destroyed with the same probability $p$ . Note, that blocks of the upper and lower level are indestructible, so there are only $n·m$ blocks that can be destroyed.
The period of the strong winds will last for $k$ days and $k$ nights. If during this period the building will split in at least two connected components, it will collapse and Alex will have to find another place to spend summer.
Find the probability that Alex won't have to look for other opportunities and will be able to spend the summer in this camp.
Unfortunately, it's the period of the strong winds now and there is a chance the camp will be destroyed! Camp building can be represented as the rectangle of $n+2$ concrete blocks height and $m$ blocks width.
Every day there is a breeze blowing from the sea. Each block, except for the blocks of the upper and lower levers, such that there is no block to the left of it is destroyed with the probability . Similarly, each night the breeze blows in the direction to the sea. Thus, each block (again, except for the blocks of the upper and lower levers) such that there is no block to the right of it is destroyed with the same probability $p$ . Note, that blocks of the upper and lower level are indestructible, so there are only $n·m$ blocks that can be destroyed.
The period of the strong winds will last for $k$ days and $k$ nights. If during this period the building will split in at least two connected components, it will collapse and Alex will have to find another place to spend summer.
Find the probability that Alex won't have to look for other opportunities and will be able to spend the summer in this camp.
输入格式
The first line of the input contains two integers $n$ and $m$ ( $1<=n,m<=1500$ ) that define the size of the destructible part of building.
The second line of the input contains two integers $a$ and $b$ ( $1<=a<=b<=10^{9}$ ) that define the probability $p$ . It's guaranteed that integers $a$ and $b$ are coprime.
The third line contains a single integer $k$ ( $0<=k<=100000$ ) — the number of days and nights strong wind will blow for.
The second line of the input contains two integers $a$ and $b$ ( $1<=a<=b<=10^{9}$ ) that define the probability $p$ . It's guaranteed that integers $a$ and $b$ are coprime.
The third line contains a single integer $k$ ( $0<=k<=100000$ ) — the number of days and nights strong wind will blow for.
输出格式
Consider the answer as an irreducible fraction is equal to . Print one integer equal to . It's guaranteed that within the given constraints .
输入输出样例
输入 #1
2 2 1 2 1
输出 #1
937500007
输入 #2
5 1 3 10 1
输出 #2
95964640
输入 #3
3 3 1 10 5
输出 #3
927188454
In the first sample, each of the four blocks is destroyed with the probability . There are $7$ scenarios that result in building not collapsing, and the probability we are looking for is equal to , so you should print 


C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted