鸽笼原理 HDU - 1808 组合数学

Every year there is the same problem at Halloween: Each neighbour is only willing to give a certain total number of sweets on that day, no matter how many children call on him, so it may happen that a child will get nothing if it is too late. To avoid conflicts, the children have decided they will put all sweets together and then divide them evenly among themselves. From last year's experience of Halloween they know how many sweets they get from each neighbour. Since they care more about justice than about the number of sweets they get, they want to select a subset of the neighbours to visit, so that in sharing every child receives the same number of sweets. They will not be satisfied if they have any sweets left which cannot be divided. 

Your job is to help the children and present a solution. 
 

Input

The input contains several test cases. 
The first line of each test case contains two integers c and n (1 ≤ c ≤ n ≤ 100000), the number of children and the number of neighbours, respectively. The next line contains n space separated integers a 1 , ... , a n (1 ≤ a i ≤ 100000 ), where a i represents the number of sweets the children get if they visit neighbour i. 

The last test case is followed by two zeros. 
 

Output

For each test case output one line with the indices of the neighbours the children should select (here, index i corresponds to neighbour i who gives a total number of a i sweets). If there is no solution where each child gets at least one sweet, print "no sweets" instead. Note that if there are several solutions where each child gets at least one sweet, you may print any of them. 

Sample Input

4 5
1 2 3 7 5
3 6
7 11 2 5 13 17
0 0

Sample Output

3 5
2 3 4

给你n个数,从中挑选若干个个数,他们的和时c的倍数。

因为题目中c保证小于n,所以根据抽屉原理,一定存在一个连续的区间,满足题目要求

另外两个数对m取模的值相等,那么他们的差一定是m的倍数。

#include
#include
#include
#include
using namespace std;
#define ll long long
const int M=1e5+10;
const int inf=0x3f3f3f3f;
const int modd=1e9+7;
int a[M],mod[M];
int i,j,k,n,m;
int c;
int main()
{
    while(~scanf("%d%d",&c,&n)&&n)
    {
        for(int i=1;i<=n;i++)
            scanf("%d",&a[i]);
        memset(mod,-1,sizeof mod);
        int sum=0;
        for(int i=1;i<=n;i++){
            sum=(a[i]%c+sum)%c;
            if(!sum){
                printf("%d",1);
                for(int j=2;j<=i;j++)printf(" %d",j);
                printf("\n");
                break;
            }
            else if(mod[sum]!=-1){
                printf("%d",mod[sum]+1);
                for(int j=mod[sum]+2;j<=i;j++)printf(" %d",j);
                printf("\n");
                break;
            }
            mod[sum]=i;
        }
    }
    return 0;
}

 

你可能感兴趣的:(数学专题)