AcWing170. 加成序列(迭代加深)

Posted hh13579

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AcWing170. 加成序列(迭代加深)相关的知识,希望对你有一定的参考价值。

AcWing170. 加成序列(迭代加深)

问题

传送门

代码

#include <iostream>
#include <cstdio>
#include <queue>
#include <cstring>
#include <algorithm>
#include <cmath>
using namespace std;
const int N = 110;
int n;
int path[N];
bool dfs(int u,int k)
{
    if(u==k) return path[u-1] == n;
    bool st[N] = {0};
    for(int i=u-1;i>=0;i--)
    {
        for(int j=i;j>=0;j--)
        {
            int s = path[i] + path[j];
            if(s>n || s<=path[u-1] || st[s])
                continue;
            st[s] = true;
            path[u] = s;
            if(dfs(u+1,k)) return true;
        }
    }
    return false;

}
int main()
{
    path[0] = 1;
    while(cin >> n,n)
    {
        int k = 1;
        while(!dfs(1,k))
            k++;
        for(int i=0;i<k;i++)
        {
            cout << path[i] << " ";
        }
        cout << "
";
    }
    return 0;
}

以上是关于AcWing170. 加成序列(迭代加深)的主要内容,如果未能解决你的问题,请参考以下文章

[dfs] aw180. 排书(IDA*+dfs深入理解+思维+好题)

Acw 170.加成序列

构造数列 [迭代加深搜索]

构造数列 迭代加深dfs

Uva 11212 编辑书稿(迭代加深搜索)

Power Calculus UVA - 1374 迭代加深搜索