博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 3370 Halloween treats 解题报告 <鸽巢原理>
阅读量:5033 次
发布时间:2019-06-12

本文共 2663 字,大约阅读时间需要 8 分钟。

链接:

 

Description

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 a1 , ... , an (1 ≤ ai ≤ 100000 ), where ai 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 ai 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 51 2 3 7 53 67 11 2 5 13 170 0

Sample Output

3 52 3 4
本题是一道组合数学题, 利用鸽巢原理就能解决;
首先简单说一下鸽巢原理,就是有n+1个球,放在n个盒子中,那么至少有一个盒子有两个或更多的球。
题意为从 N 个数中选 K 个使他们的和恰好能整除 M;
1 #include 
2 int a[100000], m[100000]; 3 int main( ) 4 {
5 int N, M; 6 while( scanf( "%d%d", &N, &M ) , N+M ) 7 {
8 int sum=0, b=0, e=0; 9 for( int i=0; i

 

poj 2356 Find a multiple 也是一样的

 

这是我最初写的代码
1 #include 
2 #include
3 #include
4 int a[10005], b[10005], c[10005]; 5 int main( ) 6 {
7 int N; 8 9 while( scanf( "%d", &N ) != EOF ) 10 { 11 memset( b, 0, sizeof( b ) ); 12 memset( c, 0, sizeof( c ) ); 13 for( int i=0; i
 
修改版
 
1 #include 
2 int a[120000], m[120000], b[120000]; 3 int main( ) 4 {
5 int N; 6 //while( scanf( "%d",&N ) != EOF ) 7 scanf( "%d",&N ); 8 {
9 for( int i=0; i
 

转载于:https://www.cnblogs.com/jian1573/archive/2012/02/22/2363648.html

你可能感兴趣的文章
并发访问超时的问题可能性(引用)
查看>>
中小团队基于Docker的Devops实践
查看>>
利用python打开摄像头并保存
查看>>
System函数的使用说明
查看>>
Selenium-测试对象操作之:获取浏览器滚动条滚动距离
查看>>
Linux下MySQL数据库安装与配置
查看>>
Extjs String转Json
查看>>
oracle入门(4)——少而常用的命令
查看>>
打印机设置(PrintDialog)、页面设置(PageSetupDialog) 及 RDLC报表如何选择指定打印机...
查看>>
Java 虚拟机部分面试题
查看>>
JS中 String/JSON 方法总结
查看>>
二叉树的遍历问题总结
查看>>
3.14-3.20周总结
查看>>
Spring之面向切面编程AOP
查看>>
MATLAB GUI程序设计中使文本框接收多行输入的方法
查看>>
全文检索-Elasticsearch (四) elasticsearch.net 客户端
查看>>
Oracle DBMS_SESSION
查看>>
sublime复制当前行到下一行
查看>>
WPF 3D变换应用
查看>>
luogu4012 深海机器人问题 网络流
查看>>