码迷,mamicode.com
首页 > 其他好文 > 详细

POJ - 2248 迭代加深

时间:2018-02-13 18:50:32      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:短链   迭代   pos   main   int   ==   c++   bre   枚举   

枚举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 迭代加深

标签:短链   迭代   pos   main   int   ==   c++   bre   枚举   

原文地址:https://www.cnblogs.com/caturra/p/8447039.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!