• HDU 1258 Sum It Up(DFS)


    题目链接

    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

     题解:题意是给出一个数字t,然后给出一组数字,在这组数字里面找出和为t的数字,并且按照从大到小输出,每个数字只能使用一次,相同的组只输出一次。如果无解,输出NONE。用DFS解。

    #include <cstdio>
    #include <iostream>
    #include <string>
    #include <sstream>
    #include <cstring>
    #include <stack>
    #include <queue>
    #include <algorithm>
    #include <cmath>
    #include <map>
    #define ms(a) memset(a,0,sizeof(a))
    #define msp memset(mp,0,sizeof(mp))
    #define msv memset(vis,0,sizeof(vis))
    using namespace std;
    //#define LOCAL
    int n,len,a[20],b[20],cnt;
    int cmp(int a,int b)
    {
        return a>b;
    }
    void dfs(int x,int posa,int sum,int posb)
    {
        int i;
        if(sum>n)return;
        if(sum==n)
        {
            cnt++;
            for(i=0;i<posb;i++)
            {
                if(i)printf("+%d",b[i]);
                else printf("%d",b[i]);
            }
            printf("
    ");
        }
        for(i=posa;i<len;i++)
        {
            b[posb]=a[i];
            dfs(a[i],i+1,sum+a[i],posb+1);
            while(i+1<len&&a[i]==a[i+1])i++;
        }
    }
    int main()
    {
    #ifdef LOCAL
        freopen("in.txt", "r", stdin);
    #endif // LOCAL
        //Start
        int i;
        while(~scanf("%d%d",&n,&len),n+len!=0)
        {
            for(i=0;i<len;i++)scanf("%d",&a[i]);
            sort(a,a+len,cmp);
            printf("Sums of %d:
    ",n);
            cnt=0;
            dfs(0,0,0,0);
            if(!cnt)printf("NONE
    ");
        }
        return 0;
    }
  • 相关阅读:
    深入理解计算机系统cp1:存储单位与编码
    25个JavaScript数组方法代码示例
    中间人攻击,HTTPS也可以被碾压
    用了这么久HTTP, 你是否了解Content-Length?
    C#证明静态方法中的成员在线程之间是独立的
    ASP.NET Core Web API官方文档(链接)
    C#中,隐式转换(implicit)和显式转换(explicit)重载方法,不支持将接口类型作为转换的源类型或目标类型
    ASP.NET Core MVC 和Razor页面中的模型验证(链接)
    C#中JSON字符串中的转义字符
    使用文件流,读写网络共享盘
  • 原文地址:https://www.cnblogs.com/gpsx/p/5167665.html
Copyright © 2020-2023  润新知