小木棍 [数据加强版]

题目

https://www.luogu.org/problemnew/show/P1120

思路

预先处理出所有木棍的总长度,且保证枚举答案的值能被总长度整除。

每根木棍的长度可用桶来存储,并且预先处理出最长的和最短的木棍的长度,搜索时从最大长度到最小长度递减枚举。

若拼接当前木棍时已用了一根长为X的木棍,则dfs时从长度X开始搜索。

若某组拼接不成立,且此时 已拼接的长度为0 或 当前已拼接的长度与刚才枚举的长度之和为最终枚举的答案 时,则可直接跳出循环,因为此时继续枚举其它更小的值时,显然可能情况更少,且同样凑不完。

代码

#include
#include
#include
#include
using namespace std;
const int N=70;
int n,a[N],cnt,ans,s;
bool cmp(int x,int y)
{
	return x>y;
}
bool b[N];
inline void dfs(int ass,int sum,int g,int p)
{
	if(sum*g==ans)
	{
		printf("%d\n",g); 
		exit(0);
	}
	if(ans-ass

你可能感兴趣的:(题解)