POJ - 2248 迭代加深

Posted The Azure Arbitrator

tags:

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

枚举ak的值
反向枚举使ak尽快到达最短链的n

/*H E A D*/
int n,m,a[23333],dep;
bool dfs(int x){
    if(a[x-1]>n||a[x-1]<=a[x-2])return 0;
    if(x>dep){
        if(a[x-1]==n) return 1;
        else return 0;
    }
//  rep(i,1,x-1){
//      rep(j,1,x-1){
    rrep(i,x-1,1){
        rrep(j,x-1,i){
            a[x]=a[i]+a[j];
            if(dfs(x+1))return 1;
        }
    }
    return 0;
}
int main(){
    ios;
    while(cin>>n){
        if(n==0)break;
        if(n==1){
            cout<<1<<endl;
            continue;
        }
        a[1]=1;
        rep(depth,2,oo){
            dep=depth;
            if(dfs(2)){
                rep(i,1,depth-1) cout<<a[i]<<" ";
                cout<<a[depth]<<endl;
                break;
            }
        }
    }
    return 0;
}

UPD:UVa上的TLE了啊,待我摸鱼过后再改改

以上是关于POJ - 2248 迭代加深的主要内容,如果未能解决你的问题,请参考以下文章

POJ - 2248 迭代加深

0x22 迭代加深

迭代加深搜索(以Power Calculus POJ--3134 UVa--1374为例)

POJ1129Channel Allocation[迭代加深搜索 四色定理]

POJ-3134-Power Calculus(迭代加深DFS)

[poj 2331] Water pipe ID A*迭代加深搜索(dfs)