Sticks HDU - 1455 (未完成)

Posted astonc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sticks HDU - 1455 (未完成)相关的知识,希望对你有一定的参考价值。

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. 
InputThe 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. 
OutputThe output file 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 <iostream>
#include <stdio.h>
#include <string.h>
#include <string>
#include <cstdio>
#include <cmath>
#include <algorithm>
using namespace std;
 
int n,cnt,sum;//设置全局变量,n表示木棍的数量,sum表示n个木棍的总长度,cnt=sum/i;
 
struct node
{
  int lenth; // 木棍的长度
  int mark; //标记这根木棍是否被用过;
}stick[66];
 
int cmp(node a,node b) //按长度从大到小排序
{
    return a.lenth>b.lenth;
}
 
//len为当前木棒的长度,count统计当前长度木棒的数量,
int dfs(int len,int count,int l,int pos)
{
   if(len==sum) return 1; //递归出口
   if(count==cnt)   return 1;
 
   for(int i=pos;i<n;i++)
   {
      if(stick[i].mark)continue; //如果木棍被标记过,跳过去
      if(len==(stick[i].lenth+l))
      {
          stick[i].mark=1;
          if(dfs(len,count+1,0,0))  return 1;
          stick[i].mark=0;
          return 0;
      }
      else if(len>(stick[i].lenth+l))
      {
          stick[i].mark=1;
          l+=stick[i].lenth;
          if(dfs(len,count,l,i+1))
             return 1;
          l-=stick[i].lenth;  //如果不能拼接,那么就恢复
          stick[i].mark=0;
          if(l==0) return 0;
          while(stick[i].lenth==stick[i+1].lenth)i++;  //如果不剪支跑一遍要140MS,加上剪支跑一遍只要31MS,ORZ
      }
   }
  return 0;
}
 
int main()
{
        while(cin>>n&&n)
        {
           cnt=sum=0;
           for(int i=0;i<n;i++)
           {
               cin>>stick[i].lenth;
               sum+=stick[i].lenth;
               stick[i].mark=0;
           }
           sort(stick,stick+n,cmp);
           for(int i=stick[0].lenth;i<=sum;i++)
           {
              if(sum%i)continue;
              cnt=sum/i;  
              if(dfs(i,0,0,0))
              {
                 printf("%d
",i);
                 break;
              }
           }
 
        }
        return 0;
}

 



以上是关于Sticks HDU - 1455 (未完成)的主要内容,如果未能解决你的问题,请参考以下文章

hdu1455 拼木棍(经典dfs)

HDU_1455_dfs

HDU 1455(DFS_F题)解题报告

hdu acm-step 1.3.6 Wooden Sticks

HDU 1005 Wooden Sticks

看似不是dfs的dfs HDU-1455