CF708E.Student's Camp

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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+2n+2 concrete blocks height and mm 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 pp . Note, that blocks of the upper and lower level are indestructible, so there are only nmn·m blocks that can be destroyed.

The period of the strong winds will last for kk days and kk 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 nn and mm ( 1<=n,m<=15001<=n,m<=1500 ) that define the size of the destructible part of building.

The second line of the input contains two integers aa and bb ( 1<=a<=b<=1091<=a<=b<=10^{9} ) that define the probability pp . It's guaranteed that integers aa and bb are coprime.

The third line contains a single integer kk ( 0<=k<=1000000<=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 77 scenarios that result in building not collapsing, and the probability we are looking for is equal to , so you should print

首页