简单深搜:POJ1546——Sum it up

结束了三分搜索的旅程 我开始迈入深搜的大坑。。

首先是一道比较基础的深搜题目(还是很难理解好么)

POJ 1564 SUM IT UP

大体上的思路无非是通过深搜来进行穷举、匹配

为了能更好地理解深搜 可以尝试去画一下二叉树理解一下,查看遍历的路径

代码还是百度到别人的自己再参悟- -佩服别人的功底啊

先上代码:

/*POJ 1546 Sum it up*/
# include<iostream>
# include<algorithm>
# include<cstdio>

using namespace std;

int a[15], b[15],t,n,sum,cnt;

bool cmp(int a, int b)
{
    return a > b;
}

void dfs(int posa,int posb,int sum)
{
    if (sum > t)
        return;
    if (sum == t)
    {
        cnt++;

        for (int i = 0; i < posb; i++)
        {
            if (i == 0)
                cout << b[i];
            else
                cout << "+" << b[i];
        }

        cout << endl;
    }

    for (int i = posa; i < n; i++)
    {
        b[posb] = a[i];
        dfs(i + 1, posb + 1, sum + a[i]);
        while (a[i] == a[i+1]&&i+1<n)
            i++;//防止重复运算(剪枝)
    }
}

int main()
{
    while (cin >> t >> n)
    {
        if (t==0&&n==0)
            break;
        for (int i = 0; i < n; i++)
            cin >> a[i];
        sort(a, a + n, cmp);//为了按照题目要求进行降序输出,先对初始数组降序排序

        printf("Sums of %d:\n", t);
        cnt = 0;
        dfs(0, 0, 0);
        if (!cnt)
            printf("NONE\n");
    }

    return 0;
}

解释一下实现的方法。首先:数组a用来存放输入的一组数字,数组b用来暂时储存本次深搜路径生成的组合

深搜的主体部分不过多解释。。还是自己画树理解最好

一些细节:1.剪枝:在树的同一层一个数字没必要试两遍,所以如果这一层的下一个元素还是和原来一样就跳过它继续

     2.降序:题目要求了降序输出。那么在深搜前直接现对数组a降序排列即可

时间: 2024-10-15 17:40:38

简单深搜:POJ1546——Sum it up的相关文章

hdu1016(简单深搜)

这是一个简单深搜问题,要求相邻的数之间相加为素数.采用深搜,把满足条件的值放在parent[]中.最后输出parent[]. A ring is compose of n circles as shown in diagram. Put natural number 1, 2, ..., n into each circle separately, and the sum of numbers in two adjacent circles should be a prime. Note: th

fzu 1920 Left Mouse Button(简单深搜题)

题目地址:http://acm.fzu.edu.cn/problem.php?pid=1920 题目大意是给定一个n*n的图,模拟扫雷游戏,0代表没有雷区,1代表附近九宫格内只有一个雷-- 如果不懂的话去玩下扫雷,挺好玩的,99个雷的玩了好几百盘才赢了一次............ 此题假设神操作,点不到雷,问你最少要多少下才可以把图中非雷的点完,怎么样才最快呢? 当然先点0啦,,,,,,,, 好吧,不废话了..... ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1

ZOJ Seeding 2100【简单深搜】

Seeding Time Limit: 2 Seconds      Memory Limit: 65536 KB It is spring time and farmers have to plant seeds in the field. Tom has a nice field, which is a rectangle with n * m squares. There are big stones in some of the squares. Tom has a seeding-ma

hdu 1241 Oil Deposits(八方向简单深搜,对新手挺经典)

Oil Deposits Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 12461 Accepted Submission(s): 7245 Problem Description The GeoSurvComp geologic survey company is responsible for detecting underground

简单深搜(poj 3009)

题目链接:http://poj.org/problem?id=3009 题目:冰壶撞向目的地,只有遇到"1"才能停下来,并且把"1"撞成"0".只能横冲直撞,不允许蛇皮走位等等骚操作.从"2"要撞到"3",周围有"0",才能向有"0"的地方滑.运动员只能推十次,问最少要多少次才到"3"? 用深搜遍历每一个方向. 1 #include<stdi

NYoj The partial sum problem(简单深搜+优化)

题目链接:http://acm.nyist.edu.cn/JudgeOnline/problem.php?pid=927 代码: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #include <math.h> 5 #include <algorithm> 6 #include <iostream> 7 using namespace std; 8

poj1321棋盘简单深搜

这个题确实有点简单,看清楚不能同列同行就好了,用一个一维数组标记哪一列用了往下搜就好了 #include<stdio.h> int flag[8]={1,1,1,1,1,1,1,1},i,j,n,k,num=0; char arr[10][11]; void dfs(int a,int b) { int ii,jj; if(b==0) { num++; return ; } for(ii=a+1;ii<n;ii++) for(jj=0;jj<n;jj++) { if(flag[jj

HDOJ1015(简单深搜)

简单的深度优先搜索.求最大字典序,注意要先排序. #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> using namespace std; const int SIZE=13; char a[5]; int vis[SIZE*2+10]; bool cmp(char a,char b) { return b > a; } int npow(int x,i

nyoj587 hdu1045 简单深搜

#include<iostream> #include<cstdio> #include<queue> #include<vector> #include<map> #include<list> #include<set> #include<stack> #include<cstring> #include<string> #include<algorithm> #inclu