B - 抽屉 POJ - 2356 (容斥原理)

The input contains N natural (i.e. positive integer) numbers ( N <= 10000 ). Each of that numbers is not greater than 15000. This numbers are not necessarily different (so it may happen that two or more of them will be equal). Your task is to choose a few of given numbers ( 1 <= few <= N ) so that the sum of chosen numbers is multiple for N (i.e. N * k = (sum of chosen numbers) for some natural number k).

Input

The first line of the input contains the single number N. Each of next N lines contains one number from the given set.

Output

In case your program decides that the target set of numbers can not be found it should print to the output the single number 0. Otherwise it should print the number of the chosen numbers in the first line followed by the chosen numbers themselves (on a separate line each) in arbitrary order. 

If there are more than one set of numbers with required properties you should print to the output only one (preferably your favorite) of them.

Sample Input

5
1
2
3
4
1

Sample Output

2
2
3

 

题意:

输入n

输入n个数

判断这n个数中是不是有几个数字之和是n的倍数

思路:

n个数余数分别为 1 ~ n-1 ,相当于有n-1个抽屉,n个物品

分别计算a[1] + a[2] + …… + a[k] 的和然后取余如果为零则直接输出前k个数,否则寻找余数相同的两个数,假设为i, j (i < j),则a[i+1] + . . . . + a[j] 的和一定能被n整除(原理还没想清楚)

 

AC代码

复制代码
 1 #include<iostream>
 2 #include<stdio.h>
 3 #include<string.h>
 4 using namespace std;
 5 int a[10005];
 6 int mod[10005];
 7 int mark[10005];
 8 
 9 int main()
10 {
11     int n;
12     bool flag = false;
13     cin >> n;
14     memset(mod, 0, sizeof(mod));
15     memset(mark, 0, sizeof(mark));
16     for(int i = 1; i <= n; i++)
17     {
18         cin >> a[i];
19         mod[i] = (mod[i-1] + a[i]) % n;
20     }
21 
22     for(int i = 1; i <= n; i++)
23     {
24         if(mod[i] == 0)
25         {
26             flag = true;
27             cout << i << endl;
28             for(int j = 1; j <= i; j++)
29                 cout << a[j] << endl;
30             break;
31         }
32     }
33 
34     if(!flag)
35     {
36         for(int i = 1; i <= n; i++)
37         {
38             if(mark[mod[i]] == 0)
39                 mark[mod[i]] = i;
40             else
41             {
42                 cout << i -mark[mod[i]] << endl;
43                 for(int j = mark[mod[i]]+1; j <= i; j++)
44                     cout << a[j] << endl;
45 
46                 break;
47             }
48         }
49     }
50 
51     return 0;
52 }
复制代码

 

posted @   Veritas_des_Liberty  阅读(277)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 零经验选手,Compose 一天开发一款小游戏!
· 因为Apifox不支持离线,我果断选择了Apipost!
· 通过 API 将Deepseek响应流式内容输出到前端
点击右上角即可分享
微信分享提示