#P3518. [POI2011] SEJ-Strongbox

[POI2011] SEJ-Strongbox

题目描述

Byteasar is a famous safe-cracker, who renounced his criminal activity and got into testing and certifying anti-burglary devices.

He has just received a new kind of strongbox for tests: a combinatorial safe.

A combinatorial safe is something different from a combination safe, even though it is opened with a rotary dial.

The dial can be set in nn different positions, numbered from 0 to n1n-1.

Setting the dial in some of these positions opens the safe, while in others it does not.

And here is the combinatorial property, from which the name comes from:

if xx and yy are opening positions, then so is (x+y) mod n(x+y)\ mod\ n too; note that is holds for x=yx=y as well.

Byteasar tried kk different positions of the dial: m1,m2,,mkm_1,m_2,\cdots,m_k.

The positions m1,m2,,mk1m_1,m_2,\cdots,m_{k-1} did not open the safe,only the last position mkm_k did.

Byteasar is already tired from checking these kk positions and has thus absolutely no intention of trying the remaining ones.

He would like to know however, based on what he already knows about the positions he tried, what is the maximum possible number of positions that open the safe.

Help him by writing an appropriate program!

给定n和k个整数,求mod n加法下的群G的一个子群G',满足a[1]~a[k-1]都不在群中而a[k]在群中

输入格式

The first line of the standard input gives two integers nn and kk, separated by a single space, 1k250 0001\le k\le 250\ 000, kn1014k\le n\le 10^{14}.

The second line holds kk different integers, also separated by single spaces, m1,m2,,mkm_1,m_2,\cdots,m_k, 0mi<n0\le m_i<n.

You can assume that the input data correspond to a certain combinatorial safe that complies with the description above.

In tests worth approximately 70% of the points it holds that k1 000k\le 1\ 000.

In some of those tests, worth approximately 20% of the points, the following conditions hold in addition: n108n\le 10^8 and k100k\le 100.

输出格式

Your program should print out to the first and only line of the standard output a single integer: the maximum number of the dial's positions that can open the safe.

题目大意

有一个密码箱,00n1n-1 中的某些整数是它的密码。且满足:若 aabb 是它的密码,则 (a+b)modn(a+b)\bmod n 也是它的密码(aabb 可以相等)。某人试了 kk 次密码,前 k1k-1 次都失败了,最后一次成功了。

问,该密码箱最多有多少种不同的密码。

输入格式

第一行两个整数 nnkk

第二行为 kk 个非负整数,表示每次试的密码。

输出格式

一行一个整数,表示答案。

42 5
28 31 10 38 24
14

提示

给定n和k个整数,求mod n加法下的群G的一个子群G',满足a[1]~a[k-1]都不在群中而a[k]在群中