zoukankan      html  css  js  c++  java
  • POJ1011 (DFS+剪枝)

    Sticks
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 129606   Accepted: 30388

    Description

    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.

    Input

    The input contains blocks of 2 lines. The first line contains the number of sticks parts after cutting, there are at most 64 sticks. The second line contains the lengths of those parts separated by the space. The last line of the file contains zero.

    Output

    The output should contains the smallest possible length of original sticks, one per line.

    Sample Input

    9
    5 2 1 5 2 1 5 2 1
    4
    1 2 3 4
    0
    

    Sample Output

    6
    5
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    using namespace std;
    
    int a[70], n;
    bool vis[70];
    int Cmp(int a, int b)
    {
        return a>b;
    }
    
    //len 是要构造的每段的长度。 cur是构造每段
    //长度的过程中还需要的。 num是剩余的木棒数。 
    int dfs(int len, int cur, int num)
    {
        if(cur==0&&num==0) return true; 
        if(cur==0) cur = len;
        for(int i=0; i<n; i++)
        {
            if(vis[i]) continue;
            if(cur-a[i]>=0)
            {
                vis[i] = 1;
                if(dfs(len, cur-a[i], num-1)) return true;
                vis[i] = 0;
                if(a[i]==cur||cur==len) return false;//a[i]==cur
    //满足一个木棒长度, 但是不满足全部的 cur==len是进行循环之后还是不满足 
                while(a[i]==a[i+1]&&i+1<n) ++i;
            }
        }
        return false;
    }
    
    int main()
    {
        while(scanf("%d", &n), n)
        {
            int sum = 0;
            for(int i=0; i<n; i++)
            {
                scanf("%d", &a[i]);
                sum+=a[i];
            }
            sort(a, a+n, Cmp);
            for(int i=a[0]; i<=sum; i++)
            {
                if(sum%i==0)
                {
                    memset(vis, 0, sizeof(vis));
                    if(dfs(i, 0, n))
                    {
                        printf("%d
    ", i);
                        break;
                    }
                }
            }
        }
        return 0;
    }
  • 相关阅读:
    XP系统忘记密码解决方法
    实现一个简易的IoC框架(上)(此篇与Spring.NET无关,为自己手写IoC框架)
    Spring.NET教程(三)——对象的创建(基础篇)
    Spring.NET教程(二)——环境搭建(基础篇)
    Spring.NET教程(一)——控制反转(依赖注入)(基础篇)(转)
    递归与迭代
    软件研发人员考核的十项基本原则(转)
    ORACLE多表关联的update语句
    软件质量的分层控制方法
    技术研究与工程开发(转)
  • 原文地址:https://www.cnblogs.com/acm1314/p/4767755.html
Copyright © 2011-2022 走看看