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,... ,an and b1,b2,... ,bm and a prime number p . Today he generates n sets. Let's describe the generation process for the i -th set:
- First it has a single number 1 .
- Let's take any element c from this set. For all j ( 1<=j<=m ) if number (c⋅aibj) mod p doesn't occur in the set, then add it to the set.
- Repeat step 2 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 n generated sets.
输入格式
The first line contains three integers n , m and p ( 1<=n<=104 , 1<=m<=105 , 2<=p<=109 ), p is prime.
The second line contains space-separated integers a1,a2,... ,an ( 1<=ai<p ). The third line contains space-separated integers b1,b2,... ,bm ( 1<=bi<=109 ).
输出格式
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