2016ACM/ICPC亚洲区沈阳站 HDU5954 Do not pour out (积分+二分)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5954

题意:有一个圆柱形杯子,地面为半径为1的圆,高为2.现在给定一个实数d为杯子中水面的高度,问将杯子倾斜到最大角度且杯中水不溢出水面时的水面表面面积

思路:

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <vector>
#include <string>
#include <queue>
#include <map>
#include <algorithm>
using namespace std;

typedef long long ll;
const int maxn = 1e5 + 5;
const double eps = 1e-100;
const double pi = acos(-1);

int cmp(double x, double y)
{
	if (fabs(x - y) <= eps)return 0;
	if (x < y)return -1;
	return 1;
}

double cal(double x)
{
	return -x * cos(x) + sin(x) - sin(x)*sin(x)*sin(x) / 3.0;
}

int main()
{
	int t;
	scanf("%d", &t);
	while (t--)
	{
		double d;
		scanf("%lf", &d);
		if (cmp(d, 1) >= 0)
		{
			printf("%.5lf\n", pi*sqrt((2 - d)*(2 - d) + 1));
			continue;
		}
		if (cmp(d, 0) == 0)
		{
			printf("0.00000\n");
			continue;
		}
		double l = 0, r = pi / 4.0;
		double res;
		int cnt = 2e3;
		while (cmp(l, r) <= 0)
		{
			cnt--;
			double mid = (l + r) / 2.0;
			double a = acos(1.0-2.0*tan(mid));
			double s = (cal(a) - cal(0))/tan(mid);
			if (cmp(s, pi*d) == 0 || cnt<=0)
			{
				res = mid;
				break;
			}
			else if (cmp(s, pi*d) >= 0)
			{
				r = mid;
			}
			else
			{
				l = mid;
			}
		}
		double a = acos(1.0-2.0*tan(res));
		double ans = (a - sin(2*a)/2.0) /(sin(res));
		printf("%.5lf\n", ans);
	}
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值