码迷,mamicode.com
首页 > 其他好文 > 详细

light oj 1297 Largest Box

时间:2015-11-09 15:27:19      阅读:311      评论:0      收藏:0      [点我收藏+]

标签:

1297 - Largest Box
Time Limit: 2 second(s) Memory Limit: 32 MB

In the following figure you can see a rectangular card. The width of the card is W and length of the card is L and thickness is zero. Four (x*x) squares are cut from the four corners of the card shown by the black dotted lines. Then the card is folded along the magenta lines to make a box without a cover.

 

Given the width and height of the box, you will have to find the maximum volume of the box you can make for any value of x.

Input

Input starts with an integer T (≤ 10000), denoting the number of test cases.

Each case starts with a line containing two real numbers L and W (0 < L, W < 100).

Output

For each case, print the case number and the maximum volume of the box that can be made. Errors less than 10-6 will be ignored.

Sample Input

Output for Sample Input

3

2 10

3.590 2.719

8.1991 7.189

Case 1: 4.513804324

Case 2: 2.2268848896

Case 3: 33.412886

 

求导 找点

#include<stdio.h>
#include<string.h>
#include<math.h>
#include<algorithm>
#define DD double
using namespace std;
DD w,l;
DD f(DD x)
{
	return x*(w-2*x)*(l-2*x);
}
int main()
{
	int t,k,i;
	scanf("%d",&t);
	k=1;
	while(t--)
	{
		scanf("%lf%lf",&l,&w);
		DD b=(-4)*(w+l);
		DD a=12;
		DD c=w*l;
		DD x1=(sqrt(b*b-4*a*c)-b)/(2*a);
		DD x2=(-sqrt(b*b-4*a*c)-b)/(2*a);
		printf("Case %d: ",k++);
		printf("%.7lf\n",max(f(x1),f(x2)));
	}
	return 0;
}

  

 

 

light oj 1297 Largest Box

标签:

原文地址:http://www.cnblogs.com/tonghao/p/4949785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!