CF852B.Neural Network country

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Due to the recent popularity of the Deep learning new countries are starting to look like Neural Networks. That is, the countries are being built deep with many layers, each layer possibly having many cities. They also have one entry, and one exit point.

There are exactly LL layers, each having NN cities. Let us look at the two adjacent layers L1L_{1} and L2L_{2} . Each city from the layer L1L_{1} is connected to each city from the layer L2L_{2} with the traveling cost cijc_{ij} for , and each pair of adjacent layers has the same cost in between their cities as any other pair (they just stacked the same layers, as usual). Also, the traveling costs to each city from the layer L2L_{2} are same for all cities in the L1L_{1} , that is cijc_{ij} is the same for , and fixed jj .

Doctor G. needs to speed up his computations for this country so he asks you to find the number of paths he can take from entry to exit point such that his traveling cost is divisible by given number MM .

输入格式

The first line of input contains N (1<=N<=106)N\ (1<=N<=10^{6}) , L (2<=L<=105)L\ (2<=L<=10^{5}) and M (2<=M<=100)M\ (2<=M<=100) , the number of cities in each layer, the number of layers and the number that travelling cost should be divisible by, respectively.

Second, third and fourth line contain NN integers each denoting costs 0<=cost<=M0<=cost<=M from entry point to the first layer, costs between adjacent layers as described above, and costs from the last layer to the exit point.

输出格式

Output a single integer, the number of paths Doctor G. can take which have total cost divisible by MM , modulo 109+710^{9}+7 .

输入输出样例

  • 输入#1

    2 3 13
    4 6
    2 1
    3 4
    

    输出#1

    2

说明/提示

This is a country with 33 layers, each layer having 22 cities. Paths , and are the only paths having total cost divisible by 1313 . Notice that input edges for layer cities have the same cost, and that they are same for all layers.

首页