CF756E.Byteland coins

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn types of coins in Byteland. Conveniently, the denomination of the coin type kk divides the denomination of the coin type k+1k+1 , the denomination of the coin type 11 equals 11 tugrick. The ratio of the denominations of coin types k+1k+1 and kk equals aka_{k} . It is known that for each xx there are at most 20 coin types of denomination xx .

Byteasar has bkb_{k} coins of type kk with him, and he needs to pay exactly mm tugricks. It is known that Byteasar never has more than 31053·10^{5} coins with him. Byteasar want to know how many ways there are to pay exactly mm tugricks. Two ways are different if there is an integer kk such that the amount of coins of type kk differs in these two ways. As all Byteland citizens, Byteasar wants to know the number of ways modulo 109+710^{9}+7 .

输入格式

The first line contains single integer nn ( 1<=n<=31051<=n<=3·10^{5} ) — the number of coin types.

The second line contains n1n-1 integers a1a_{1} , a2a_{2} , ...... , an1a_{n-1} ( 1<=ak<=1091<=a_{k}<=10^{9} ) — the ratios between the coin types denominations. It is guaranteed that for each xx there are at most 20 coin types of denomination xx .

The third line contains nn non-negative integers b1b_{1} , b2b_{2} , ...... , bnb_{n} — the number of coins of each type Byteasar has. It is guaranteed that the sum of these integers doesn't exceed 31053·10^{5} .

The fourth line contains single integer mm ( 0<=m<10^{10000} ) — the amount in tugricks Byteasar needs to pay.

输出格式

Print single integer — the number of ways to pay exactly mm tugricks modulo 109+710^{9}+7 .

输入输出样例

  • 输入#1

    1
    
    4
    2
    

    输出#1

    1
    
  • 输入#2

    2
    1
    4 4
    2
    

    输出#2

    3
    
  • 输入#3

    3
    3 3
    10 10 10
    17
    

    输出#3

    6
    

说明/提示

In the first example Byteasar has 44 coins of denomination 11 , and he has to pay 22 tugricks. There is only one way.

In the second example Byteasar has 44 coins of each of two different types of denomination 11 , he has to pay 22 tugricks. There are 33 ways: pay one coin of the first type and one coin of the other, pay two coins of the first type, and pay two coins of the second type.

In the third example the denominations are equal to 11 , 33 , 99 .

首页