stick

题目描述

乔治有一些同样长的小木棍,他把这些木棍随意砍成几段,直到每段的长都不超过50。
现在,他想把小木棍拼接成原来的样子,但是却忘记了自己开始时有多少根木棍和它们的长度。
给出每段小木棍的长度,编程帮他找出原始木棍的最小可能长度。

输入

输入文件共有二行。
第一行为一个单独的整数N表示砍过以后的小木棍的总数,其中N≤60,第二行为N个用空格隔开的正整数,表示N根小木棍的长度。

输出

输出文件仅一行,表示要求的原始木棍的最小可能长度。

样例输入

9

5 2 1 5 2 1 5 2 1

样例输出

6

思路

由于初始木棍要相等,所以可以对每一个可能长度进行判断,大到小排序,dfs判断能否将木棍全部用上

AC代码

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#define ll long long
using namespace std;
const int maxn = 6e5 + 5;
const int inf = 0x3f3f3f3f;
int a[65], ju, n, all, vis[65];
int dfs(int st, int x, int now, int num)
{
    if (num == n)
        return 1;
    if (now == x)
    {
        if (dfs(1, x, 0, num))
            return 1;
    }
    for (int i = st; i <= n; ++i)
    {
        if (vis[i] == 0 && now + a[i] <= x)
        {
            vis[i] = 1;
            if (dfs(i + 1, x, now + a[i], num+1))
                return 1;
            vis[i] = 0;
            if (a[i] == x - now || now == 0)
                break;
            while (a[i] == a[i + 1])
                i++;
        }
    }
    return 0;
}
bool cmp(int a, int b)
{
    return a > b;
}
int main()
{
    all = 0;
    memset(vis, 0, sizeof(vis));
    scanf("%d", &n);
    for (int i = 1; i <= n; ++i)
        scanf("%d", &a[i]), all += a[i];
    sort(a + 1, a + n + 1, cmp);
    for (int i = a[1]; i <= all; ++i)
        if (all % i == 0 && dfs(1, i, 0, 0))
        {
            printf("%d\n", i);
            return 0;
        }
    return 0;
}

 

你可能感兴趣的:(stick)