CF360D.Levko and Sets

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Levko loves all sorts of sets very much.

Levko has two arrays of integers a1,a2,... ,ana_{1},a_{2},...\ ,a_{n} and b1,b2,... ,bmb_{1},b_{2},...\ ,b_{m} and a prime number pp . Today he generates nn sets. Let's describe the generation process for the ii -th set:

  1. First it has a single number 11 .
  2. Let's take any element cc from this set. For all jj ( 1<=j<=m1<=j<=m ) if number (caibj) mod p(c·a_{i}^{b_{j}}) mod p doesn't occur in the set, then add it to the set.
  3. Repeat step 22 as long as we can add at least one element to our set.

Levko wonders, how many numbers belong to at least one set. That is, he wants to know what size is the union of nn generated sets.

输入格式

The first line contains three integers nn , mm and pp ( 1<=n<=1041<=n<=10^{4} , 1<=m<=1051<=m<=10^{5} , 2<=p<=1092<=p<=10^{9} ), pp is prime.

The second line contains space-separated integers a1,a2,... ,ana_{1},a_{2},...\ ,a_{n} ( 1<=ai<p1<=a_{i}<p ). The third line contains space-separated integers b1,b2,... ,bmb_{1},b_{2},...\ ,b_{m} ( 1<=bi<=1091<=b_{i}<=10^{9} ).

输出格式

The single number — the size of the union of the sets.

输入输出样例

  • 输入#1

    1 1 7
    2
    5
    

    输出#1

    3
    
  • 输入#2

    1 2 7
    2
    2 4
    

    输出#2

    3
    
  • 输入#3

    2 1 7
    1 6
    2
    

    输出#3

    1
    
  • 输入#4

    2 1 7
    1 6
    5
    

    输出#4

    2
    
首页