博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu--1258--Sum It Up(Map水过)
阅读量:4936 次
发布时间:2019-06-11

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

Sum It Up

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 6581    Accepted Submission(s): 3451

Problem Description
Given a specified total t and a list of n integers, find all distinct sums using numbers from the list that add up to t. For example, if t=4, n=6, and the list is [4,3,2,2,1,1], then there are four different sums that equal 4: 4,3+1,2+2, and 2+1+1.(A number can be used within a sum as many times as it appears in the list, and a single number counts as a sum.) Your job is to solve this problem in general.
 

 

Input
The input will contain one or more test cases, one per line. Each test case contains t, the total, followed by n, the number of integers in the list, followed by n integers x1,...,xn. If n=0 it signals the end of the input; otherwise, t will be a positive integer less than 1000, n will be an integer between 1 and 12(inclusive), and x1,...,xn will be positive integers less than 100. All numbers will be separated by exactly one space. The numbers in each list appear in nonincreasing order, and there may be repetitions.
 

 

Output
For each test case, first output a line containing 'Sums of', the total, and a colon. Then output each sum, one per line; if there are no sums, output the line 'NONE'. The numbers within each sum must appear in nonincreasing order. A number may be repeated in the sum as many times as it was repeated in the original list. The sums themselves must be sorted in decreasing order based on the numbers appearing in the sum. In other words, the sums must be sorted by their first number; sums with the same first number must be sorted by their second number; sums with the same first two numbers must be sorted by their third number; and so on. Within each test case, all sums must be distince; the same sum connot appear twice.
 

 

Sample Input
4 6 4 3 2 2 1 1
5 3 2 1 1
400 12 50 50 50 50 50 50 25 25 25 25 25 25
0 0
 

 

Sample Output
Sums of 4:
4
3+1
2+2
2+1+1
Sums of 5:
NONE
Sums of 400:
50+50+50+50+50+50+25+25+25+25
50+50+50+50+50+25+25+25+25+25+25
 
1 /* 2     Name: hdu--1258--Sum It Up 3     Copyright: ©2017 日天大帝 4     Author: 日天大帝  5     Date: 29/04/17 18:48 6     Description: dfs,C++map水过 7 */ 8 #include
9 #include
10 #include
11 using namespace std;12 void dfs(int,int,map
>::iterator it);13 const int MAX = 1005;14 int res[MAX];15 int n,t,flag;16 map
> mymap;17 int main(){18 ios::sync_with_stdio(false);19 20 while(cin>>n>>t,n||t){21 mymap.clear();22 flag = 0;23 memset(res,0,sizeof(res));24 for(int i=0; i
>a;26 mymap[a]++;27 }28 cout<<"Sums of "<
<<":"<
>::iterator iter){35 if(sum == n){36 flag = 1;37 cout<
second == 0)continue;45 for(int i=it->second; i>0; i--){46 if(sum+(i*it->first) > n)continue;47 for(int k=0; k
first; 49 }50 auto ipoint = it;51 dfs(sum+(i*it->first),ct+i,++ipoint);52 }53 }54 }

 

转载于:https://www.cnblogs.com/evidd/p/6786292.html

你可能感兴趣的文章
WinForm界面开发之“分页控件”
查看>>
Zen Coding — a new way of writing HTML and CSS code
查看>>
向Sql Server中导入TXT文本文档
查看>>
LINUX SOCKET PART 2: THE SERVER SIDE ISSUES
查看>>
基本数据结构(C)
查看>>
"西厂"、"东厂"照片
查看>>
淘米水的10大功效
查看>>
推式,拉式,工序拉式,装配拉式
查看>>
关于“引用”
查看>>
WPF 分批加载十万个按钮
查看>>
Linux的rsh配置rhost
查看>>
POJ-1416 Shredding Company 枚举
查看>>
SharePoint2010网站备份还原简单介绍
查看>>
PL/SQL集合与记录
查看>>
第十九章 11图书 药品管理系统
查看>>
类型转换
查看>>
C++回调机制实现(转)
查看>>
Qt事件处理(五)
查看>>
图像处理中的一些基本问题解释
查看>>
教你如何一键退出USB设备(转)
查看>>