Zero Sum 和为零(深搜)

Posted wkfvawl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Zero Sum 和为零(深搜)相关的知识,希望对你有一定的参考价值。

Description

请考虑一个由1到N(N=3, 4, 5 ... 9)的数字组成的递增数列:1 2 3 ... N。 现在请在数列中插入“+”表示加,或者“-”表示减,抑或是“ ”表示空白,来将每一对数字组合在一起(请不在第一个数字前插入符号)。 计算该表达式的结果并注意你是否得到了和为零。 请你写一个程序找出所有产生和为零的长度为N的数列。

Input

单独的一行表示整数N (3 <= N <= 9)。

Output

按照ASCII码的顺序,输出所有在每对数字间插入“+”, “-”, 或 “ ”后能得到和为零的数列。(注意:就算两个数字之间没有插入符号也应该保留空格)

Sample Input

7

Sample Output

1+2-3+4-5-6+7
1+2-3-4+5+6-7
1-2 3+4+5+6+7
1-2 3-4 5+6 7
1-2+3+4-5+6-7
1-2-3-4-5+6+7


#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
char s[20];
int n;
void DFS(int pos,int sum,int last)///三个参数:当前位置,不含当前位置的和,当前位置上的数
{
    int i;
    if(pos==n)
    {
        if(sum+last==0)
        {
            printf("%s
",s);
        }
        return;
    }
    s[pos*2-1]= ;  //搜索‘ ’号
    if(last>0)
    {
        DFS(pos+1,sum,last*10+pos+1);
    }
    else
    {
        DFS(pos+1,sum,last*10-pos-1);
    }
    s[pos*2-1]=+;  //搜索‘+’号
    DFS(pos+1,sum+last,pos+1);
    s[pos*2-1]=-;  //搜索‘-’号
    DFS(pos+1,sum+last,-(pos+1));
}

int main()
{
    int i;
    scanf("%d",&n);
    for(i=0;i<n;i++)
    {
        s[i*2]=i+1;
    }
    DFS(1,0,1);
    return 0;
}

 

以上是关于Zero Sum 和为零(深搜)的主要内容,如果未能解决你的问题,请参考以下文章

23.3Sum(三数和为零)

Sum Zero Problem(三数和为0, 破解三重for循环问题)

LeetCode面试必备100题:3Sum 数组中查找三个和为零的数

Codeforces 1270G Subset with Zero Sum

Codeforces 1270G Subset with Zero Sum

Leetcode 1304. Find N Unique Integers Sum up to Zero