博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Little Zu Chongzhi's Triangles
阅读量:5782 次
发布时间:2019-06-18

本文共 2826 字,大约阅读时间需要 9 分钟。

Little Zu Chongzhi's Triangles

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 512000/512000 K (Java/Others)

Total Submission(s): 743    Accepted Submission(s): 399

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
 题解:写了一下午,醉了,刚开始考虑的太复杂。。。竟然直接想到神搜。。。其实这个题直接从大到小排序,因为每次的三个边都是最大的,所以面积肯定也是最大,从大到小排序又保证了两条小边相加的问题。。。如此简单的一道题考虑的如此复杂,也是醉了,死胡同中漫步。。。。
代码:
1 #include
2 #include
3 #include
4 #include
5 using namespace std; 6 int cmp(int a,int b){ 7 return a>b; 8 } 9 double area(int a,int b,int c){10 //printf("%d %d %d\n",a,b,c);11 double q=(a+b+c)/2.0;12 double p;13 p=sqrt(1.0*q*(q-a)*(q-b)*(q-c));14 return p;15 }16 int stick[15];17 int main(){18 int N;19 while(~scanf("%d",&N),N){20 for(int i=0;i
stick[i]){27 ans+=area(stick[i],stick[i+1],stick[i+2]);28 i+=2;29 }30 }31 printf("%.2lf\n",ans);32 }33 return 0;34 }

 

转载地址:http://epcyx.baihongyu.com/

你可能感兴趣的文章
校园火灾Focue-2---》洗手间的一套-》电梯
查看>>
bzoj1913
查看>>
L104
查看>>
分镜头脚本
查看>>
链表基本操作的实现(转)
查看>>
邮件发送1
查看>>
[转] libcurl异步方式使用总结(附流程图)
查看>>
编译安装LNMP
查看>>
[转]基于display:table的CSS布局
查看>>
crm 02--->讲师页面及逻辑
查看>>
AS3.0 Bitmap类实现图片3D旋转效果
查看>>
Eigen ,MKL和 matlab 矩阵乘法速度比较
查看>>
带三角的面包屑导航栏(新增递增数字)
查看>>
Web应用程序安全与风险
查看>>
codeforces 984 A. Game
查看>>
CSS居中
查看>>
One Person Game(概率+数学)
查看>>
CodeForces 258B Little Elephant and Elections :于1-m中找出七个数,使六个数里面的4和7个数比第七个数严格小:数位dp+dfs...
查看>>
MAP
查看>>
手把手教你测——上网快鸟
查看>>