CF1045B.Space Isaac
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Everybody seems to think that the Martians are green, but it turns out they are metallic pink and fat. Ajs has two bags of distinct nonnegative integers. The bags are disjoint, and the union of the sets of numbers in the bags is {0,1,…,M−1} , for some positive integer M . Ajs draws a number from the first bag and a number from the second bag, and then sums them modulo M .
What are the residues modulo M that Ajs cannot obtain with this action?
输入格式
The first line contains two positive integer N ( 1≤N≤200000 ) and M ( N+1≤M≤109 ), denoting the number of the elements in the first bag and the modulus, respectively.
The second line contains N nonnegative integers a1,a2,…,aN ( 0≤a1<a2<…<aN<M ), the contents of the first bag.
输出格式
In the first line, output the cardinality K of the set of residues modulo M which Ajs cannot obtain.
In the second line of the output, print K space-separated integers greater or equal than zero and less than M , which represent the residues Ajs cannot obtain. The outputs should be sorted in increasing order of magnitude. If K =0, do not output the second line.
输入输出样例
输入#1
2 5 3 4
输出#1
1 2
输入#2
4 1000000000 5 25 125 625
输出#2
0
输入#3
2 4 1 3
输出#3
2 0 2
说明/提示
In the first sample, the first bag and the second bag contain {3,4} and {0,1,2} , respectively. Ajs can obtain every residue modulo 5 except the residue 2 : $ 4+1 \equiv 0, , 4+2 \equiv 1, , 3+0 \equiv 3, , 3+1 \equiv 4 $ modulo 5 . One can check that there is no choice of elements from the first and the second bag which sum to 2 modulo 5 .
In the second sample, the contents of the first bag are {5,25,125,625} , while the second bag contains all other nonnegative integers with at most 9 decimal digits. Every residue modulo 1000000000 can be obtained as a sum of an element in the first bag and an element in the second bag.