hdu4277 dfs+set

本文探讨了一道编程题USACOORZ,任务是使用给定长度的围栏段构建不同的三角形牧场。通过深度优先搜索算法与集合去重策略实现了方案的计算。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

USACO ORZ

Time Limit: 5000/1500 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2309    Accepted Submission(s): 826


Problem Description
Like everyone, cows enjoy variety. Their current fancy is new shapes for pastures. The old rectangular shapes are out of favor; new geometries are the favorite.
I. M. Hei, the lead cow pasture architect, is in charge of creating a triangular pasture surrounded by nice white fence rails. She is supplied with N fence segments and must arrange them into a triangular pasture. Ms. Hei must use all the rails to create three sides of non-zero length. Calculating the number of different kinds of pastures, she can build that enclosed with all fence segments. 
Two pastures look different if at least one side of both pastures has different lengths, and each pasture should not be degeneration.
 

Input
The first line is an integer T(T<=15) indicating the number of test cases.
The first line of each test case contains an integer N. (1 <= N <= 15)
The next line contains N integers li indicating the length of each fence segment. (1 <= li <= 10000)
 

Output
For each test case, output one integer indicating the number of different pastures.
 

Sample Input
  
1 3 2 3 4
 

Sample Output
  
1
 

Source
 

这个题就不多说了,我太菜了。。。。。

题意:用完所有的篱笆,组成三个边,问这样的的三角形(不同)一共有多少个

dfs+set判重,每一段篱笆可以去a,b或者c边,我们假设a<=b<=c,dfs深搜下去,等到所有的篱笆搜索完了,判重之后的size就是题目要求的数目

//这个是纯暴力的,跑了900多毫秒,有的人写的跑了200多毫秒,差距好大。。。

#include<stdio.h>
#include<iostream>
#include<set>
using namespace std;

set<__int64> s;
int len[20],n;
__int64 sum;

void dfs(int a,int b,int c,int num)
{
	__int64 tem;
	if(num==n+1)
	{
		if(a>b||b>c||a>c)//这一步可以减少下面的运算过程
			return ;
		if(a&&b&&c&&a+b>c)
		{
			tem=(a*sum+b)*sum+c;
			s.insert(tem);
		}
		return ;
	}
	dfs(a+len[num],b,c,num+1);
	dfs(a,b+len[num],c,num+1);
	dfs(a,b,c+len[num],num+1);

}
int main()
{
	int t,i;
	scanf("%d",&t);
	while(t--)
	{
		scanf("%d",&n);
		sum=0;
		for(i=1;i<=n;i++)
		{
			s.clear();
			scanf("%d",len+i);
			sum+=len[i];
		}
		dfs(0,0,0,1);
		printf("%d\n",s.size());
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

LittleLoveBoy

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值