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\n",lim);
    }
    return 0;
}

转载于:https://www.cnblogs.com/Willendless/p/9522744.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值