poj 1011 sticks 解题。

看了那么多代码

这个算是比较简单而且算是最好的了。。。。

 1 #include<iostream>
 2 using namespace std;
 3 int finish;
 4 int length;
 5 int in[50];
 6 //count:棒子的总数(如果为0则结束)
 7 //len  目前检察棒子长度的剩余量
 8 //plen 现在检察的片段长度
 9 void dfs(int count,int len,int plen)
10 {
11     --in[plen];
12     if(count==0)
13     {
14         finish=1;
15     }
16     if(!finish)
17     {
18         len-=plen;
19         if(len!=0)
20         {
21             int next_plen = min(len,plen);
22             for(;next_plen>0;--next_plen)
23             {
24                 if(in[next_plen])
25                     dfs(count,len,next_plen);
26             }
27         }
28         else
29         {
30             int max=50;
31             while(!in[max])
32                 --max;
33             dfs(count-1,length,max);
34         }
35     }
36     ++in[plen];
37 }
38 int main()
39 {
40     int n;
41     while(~scanf("%d",&n) && n)
42     {
43         memset(in,0,sizeof(in));
44         int sum=0;
45         int max=0;
46         finish=0;
47         while(n--)
48         {
49             int b;
50             scanf("%d",&b);
51             in[b]++;
52             sum+=b;
53             if(max<b)
54             {
55                 max=b;
56             }
57         }
58         length=max;
59         while(true)
60         {
61             if(sum%length==0)
62             {
63                 dfs(sum/length,length,max);
64             }
65             if(finish)
66             {
67                 break;
68             }
69             length++;
70
71         }
72         cout<<length<<endl;
73     }
74
75 }

原文网址:http://www.hankcs.com/program/algorithm/poj-1011-sticks.html

时间: 2024-10-10 12:37:15

poj 1011 sticks 解题。的相关文章

POJ 1011 - Sticks DFS+剪枝

POJ 1011 - Sticks 题意:    一把等长的木段被随机砍成 n 条小木条    已知他们各自的长度,问原来这些木段可能的最小长度是多少 分析:    1. 该长度必能被总长整除    2. 从大到小枚举,因为小长度更灵活, 可拼接可不拼接    3. 因为每一跟木条都要用到, 故若轮到其中一根原始木段选它的第一根木条时,若第一根木条若不满足,则显然第一根木条在接下来任何一根原始木段都不会满足,故无解    4. 由于所有棒子已排序,在DFS时,若某根棒子未被选,则跳过其后面所有与

poj 1011 Sticks 【DFS】+【剪枝】

题意:有未知根(长度一样)木棒(小于等于n),被猪脚任意的截成n段,猪脚(脑抽了)想知道被截之前的最短长度(我推测猪脚得了健忘症). 这道题光理解题意就花了好久,大意就是任意根被截后的木棒拼到一起,能不能组成s(<=n)根的相同的木棒, 例:数据 9  5 1 2 5 1 2 5 1 2 可以组成最短为6 的(5+1, 2+2+2)3根木棒. 策略:深搜. 不过要是传统的深搜的话,TLE妥妥的.所以要剪枝(所谓剪枝,就是多加几个限制条件). 话不多说直接上代码. 代码1: #include <

[POJ 1011]Sticks(DFS剪枝)

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 original

POJ 1011 Sticks 【DFS 剪枝】

题目链接:http://poj.org/problem?id=1011 Sticks Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 154895   Accepted: 37034 Description George took sticks of the same length and cut them randomly until all parts became at most 50 units long. Now

POJ 1011 Sticks dfs,剪枝 难度:2

http://poj.org/problem?id=1011 要把所给的集合分成几个集合,每个集合相加之和ans相等,且ans最小,因为这个和ans只在[1,64*50]内,所以可以用dfs一试 首先ans需要满足两个条件1.可以被总集合的和sum整除 2.是总集合的某个子集的和 对于条件1,可以通过试除遍历 对于条件2,可以通过dp预筛选,这两个花费时间都不大 接着搜索能不能划分成集合之和恰为ans的若干集合, 1. 可以从大向小找,因为大的更不灵活,而且所有的元素都需要取到 2.比如对于5,

poj 1011 Sticks ,剪枝神题

木棒 Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 118943 Accepted: 27429 Description 乔治拿来一组等长的木棒.将它们随机地砍断.使得每一节木棍的长度都不超过50个长度单位.然后他又想把这些木棍恢复到为裁截前的状态,但忘记了初始时有多少木棒以及木棒的初始长度.请你设计一个程序,帮助乔治计算木棒的可能最小长度.每一节木棍的长度都用大于零的整数表示. Input 输入包括多组数据,每组数据包括两

POJ 1011 sticks 搜索

Sticks Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 125918   Accepted: 29372 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 or

POJ - 1011 - Sticks (DFS + 剪枝)

题目传送:Sticks 思路:DFS + 剪枝 AC代码: #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #include <cmath> #include <queue> #include <stack> #include <vector> #include <map> #include

POJ 1011 Sticks(经典dfs)

Language: Default简体中文 Sticks Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 120720   Accepted: 27951 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 r