题意:有n个木棍,要求把n个木棍全部用完的情况下能组成多少种三角形,其中等边三角形算一种
来个dfs强行搜索,枚举完所有的情况,再根据题意判断三角形
我开始代码都看不懂,现在有点意思了,学习一下,做个笔记
#include<iostream>
#include<algorithm>
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<set>
using namespace std;
int n;
int a[100100];
int sum,ans;
set<__int64>q;
void DFS(int x,int y,int z,int cnt) {
if(x>sum/3) {
return ;
}
if(cnt == n+1) {
if(x>y || x>z || y>z || x == 0 ||y == 0 || z == 0) {
return ;
}
if(x+y>z && x+z>y && y+z>x) {
__int64 num = ((x*11113 + y)*11117 + z)*11119;
q.insert(num);
}
return ;
}
DFS(x+a[cnt],y,z,cnt+1);
DFS(x,y+a[cnt],z,cnt+1);
DFS(x,y,z+a[cnt],cnt+1);
}
int main() {
int T;
scanf("%d",&T);
while(T--) {
scanf("%d",&n);
sum = 0;
for(int i=1; i<=n; i++) {
scanf("%d",&a[i]);
sum += a[i];
}
q.clear();
DFS(0,0,0,1);
printf("%d\n",q.size());
}
return 0;
}
USACO ORZ
Time Limit: 5000/1500 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3948 Accepted Submission(s): 1319
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
2012 ACM/ICPC Asia Regional Changchun Online