zoukankan      html  css  js  c++  java
  • poj1011 Sticks (dfs剪枝)

    【题目描述】

    	George took sticks of the same length and cut them randomly until all parts became at most 50 units long. Now he wants to return sticks to the original state, but he forgot how many sticks he had originally and how long they were originally. Please help him and design a program which computes the smallest possible original length of those sticks. All lengths expressed in units are integers greater than zero.
    

    【题目链接】

    Sticks

    【算法】

    枚举答案对每一种情况构造+判定。剪枝技巧:

    
     1. 优化搜索顺序
     2. 排除等效冗余
    	 (1)构造选取的棍子递减的取
    	 (2)初始为0的棍子若无法构造出答案,则该分支减去
    	 (3)构造选取的棍子不重复选择同样长度的已经失败过的棍子。
    

    【代码】

    #include <stdio.h>
    #include <algorithm>
    #include <cstring>
    using namespace std;
    int n,all,lim;
    int a[100],v[100];
    bool dfs(int cur,int len,int last) {
        if(cur>all) return 1;
        if(len==lim) return dfs(cur+1,0,1);
        int fail=0;
        for(int i=last;i<=n;i++) {
            if(!v[i]&&len+a[i]<=lim&&a[i]!=fail) {
                v[i]=1;
                if(dfs(cur,len+a[i],i+1)) return 1;
                fail=a[i];
                v[i]=0;
                if(len==0) return 0;
            }
        }
        return 0;
    }
    int main() {
        while(~scanf("%d",&n)&&n) {
            int sum=0,val=0;
            for(int i=1;i<=n;i++) scanf("%d",&a[i]),sum+=a[i],val=max(a[i],val);
            sort(a+1,a+n+1);
            reverse(a+1,a+n+1);
            for(lim=val;lim<=sum;lim++) {
                if(sum%lim==0) {
                    all=sum/lim; memset(v,0,sizeof(v));
                    if(dfs(1,0,1)) break;
                }
            }
            printf("%d
    ",lim);
        }
        return 0;
    }
    
    
  • 相关阅读:
    Verilog杂谈
    Hadoop家族学习路线图
    R语言中apply函数
    R语言数组array函数
    R语言列表list函数
    R语言多元素向量
    R语言提取字符串的一部分substring函数
    R语言改变大小写 toupper()和 tolower()函数
    R语言统计字符串的字符数ncahr函数
    R语言格式化数字和字符串format函数
  • 原文地址:https://www.cnblogs.com/Willendless/p/9522744.html
Copyright © 2011-2022 走看看