poj 1011 dfs+剪枝

据说是剪枝神题,不过剪枝确实是挺多的,少一个有可能都会超时。

 1 #include <algorithm>
 2 #include <cstring>
 3 #include <cstdio>
 4 using namespace std;
 5
 6 const int N = 100;
 7 int stick[N];
 8 bool used[N];
 9 int n, snum, slen;
10
11 bool dfs( int num, int len, int pos )
12 {
13     if ( num == snum ) return true;
14     for ( int i = pos; i < n; i++ )
15     {
16         if ( !used[i] )
17         {
18             int tmp = stick[i] + len;
19             if ( tmp > slen ) continue;
20             used[i] = 1;
21             if ( tmp == slen )
22             {
23                 if ( dfs( num + 1, 0, 0 ) ) return true;
24                 used[i] = 0;
25                 return false;
26             }
27             else
28             {
29                 if ( dfs( num, tmp, i + 1 ) ) return true;
30                 used[i] = 0;
31             }
32             if ( len == 0 ) return false;
33             while ( stick[i] == stick[i + 1] ) i++;
34         }
35     }
36     return false;
37 }
38
39 bool cmp( int a, int b )
40 {
41     return a > b;
42 }
43
44 int main ()
45 {
46     while ( scanf("%d", &n), n )
47     {
48         int sum = 0;
49         for ( int i = 0; i < n; i++ )
50         {
51             scanf("%d", stick + i);
52             sum += stick[i];
53         }
54         sort( stick, stick + n, cmp );
55         stick[n] = -1;
56         int maxn = stick[0];
57         for ( int i = maxn; i <= sum; i++ )
58         {
59             if ( sum % i == 0 )
60             {
61                 snum = sum / i;
62                 slen = i;
63                 memset( used, 0, sizeof(used) );
64                 if ( dfs( 0, 0, 0 ) )
65                 {
66                     printf("%d\n", i);
67                     break;
68                 }
69             }
70         }
71     }
72     return 0;
73 }
时间: 2024-11-04 22:37:42

poj 1011 dfs+剪枝的相关文章

poj 1069 DFS+剪枝

1 /* 2 题意:给出一个边长为S的六边形,再给出n种边长不同的三角形,所有的长度均为整型,问这n种三角形是否 3 能够拼成这个六边形. 4 5 题解:DFS+剪枝 6 这题的关键是图的表示方法以及剪枝,图我用了一个二维数组直接表示: 7 111111111111111111111 8 111110000000000011111 9 111100000000000001111 10 111000000000000000111 11 110000000000000000011 12 100000

POJ 1167 (DFS&#183;剪枝&#183;公交时刻表)

题意  你记录了[0, 59]这个时间段内到达你所在站牌的所有公交的到这个站牌的时间  对于每路公交 1. 同一路公交的到站时间间隔是相同的 2. 每路公交在这个时间段至少到达两次 3. 最多有17路公交 4. 两个不同路的公交的第一次到站时间和到站时间间隔都可能是相同滴 5. 你在这个时间段内的记录是完整的 求最少用多少路公交可以让你的记录合法 由于每路公交至少到站两次  那么第一次到站时间是肯定小于30的  而且到站时间间隔肯定要大于第一次到站的时间  那么可以根据你的记录生成所有可能合法的

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】+【剪枝】

题意:有未知根(长度一样)木棒(小于等于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+剪枝

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

poj 1011/2362 dfs+剪枝(拼木棍)

题意:乔治拿来一组等长的木棒,将它们随机地砍断,使得每一节木棍的长度都不超过50个长度单位.然后他又想把这些木棍恢复到为裁截前的状态,但忘记了初始时有多少木棒以及木棒的初始长度.请你设计一个程序,帮助乔治计算木棒的可能最小长度.每一节木棍的长度都用大于零的整数表示.(2362是1011的特例,问一堆木棍能否拼成正方形) 思路:dfs+剪枝.其中剪枝具有相当的技巧性,其中一个地方的剪枝没有想到导致tle多次. 几个明显的剪枝点(设ans为最终的答案): 1.ans>=这堆木棍的最大长度 2.ans

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 1564 Sum It Up (DFS+剪枝)

 Sum It Up Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 5820   Accepted: 2970 Description Given a specified total t and a list of n integers, find all distinct sums using numbers from the list that add up to t. For example, if t = 4