题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5135
Little Zu Chongzhi's Triangles
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 512000/512000 K (Java/Others)
Problem Description
Zu Chongzhi (429–500) was a prominent Chinese mathematician and astronomer during the Liu Song and Southern Qi Dynasties. Zu calculated the value ofπ to the precision of six decimal places and for a thousand years thereafter no subsequent mathematician computed a value this precise. Zu calculated one year as 365.24281481 days, which is very close to 365.24219878 days as we know today. He also worked on deducing the formula for the volume of a sphere.
It is said in some legend story books that when Zu was a little boy, he liked mathematical games. One day, his father gave him some wood sticks as toys. Zu Chongzhi found a interesting problem using them. He wanted to make some triangles by those sticks, and he wanted the total area of all triangles he made to be as large as possible. The rules were :
1) A triangle could only consist of 3 sticks.
2) A triangle's vertexes must be end points of sticks. A triangle's vertex couldn't be in the middle of a stick.
3) Zu didn't have to use all sticks.
Unfortunately, Zu didn't solve that problem because it was an algorithm problem rather than a mathematical problem. You can't solve that problem without a computer if there are too many sticks. So please bring your computer and go back to Zu's time to help him so that maybe you can change the history.
Input
There are no more than 10 test cases. For each case:
The first line is an integer N(3 <= N<= 12), indicating the number of sticks Zu Chongzhi had got. The second line contains N integers, meaning the length of N sticks. The length of a stick is no more than 100. The input ends with N = 0.
Output
For each test case, output the maximum total area of triangles Zu could make. Round the result to 2 digits after decimal point. If Zu couldn't make any triangle, print 0.00 .
Sample Input
3 1 1 20 7 3 4 5 3 4 5 90 0
Sample Output
0.00 13.64
Source
2014ACM/ICPC亚洲区广州站-重现赛(感谢华工和北大)
Recommend
liuyiding
题意:给你多根木棍,三根木棍组成一个三角形,问能组成的最大面积是多少
思路:训练赛的时候,用海伦公式,假贪心贪过去了,后来才知道是数据太水了...
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <queue>
#include <vector>
#include <cmath>
using namespace std;
#define inf 0x3f3f3f3f
const int maxn=1e9+7;
double data[100];
double ans;
bool cmp(int a,int b)
{
return a>b;
}
bool check(double a,double b,double c)
{
if(a+b<=c) return false;
else if(a+c<=b) return false;
else if(b+c<=a) return false;
else return true;
}
double hailun(double a,double b,double c)
{
double p=(a+b+c)/2;
double s=sqrt((p-a)*(p-b)*(p-c)*p);
return s;
}
int main()
{
int n;
while (~scanf("%d",&n),n)
{
ans=0;
for (int i = 0; i < n; ++i)
{
scanf("%lf",&data[i]);
}
sort(data,data+n,cmp);
for (int i = 0; i < n; )
{
if(check(data[i],data[i+1],data[i+2]))
{
ans+=hailun(data[i],data[i+1],data[i+2]);
i+=3;
}
else
{
i++;
}
}
printf("%.2f\n",ans);
}
return 0;
}
探讨如何利用多根木棍构成具有最大总面积的三角形组合,通过算法解决历史数学难题,使用海伦公式计算并优化解决方案。
202

被折叠的 条评论
为什么被折叠?



