POJ 1005.I Think I Need a Houseboat

水题,主要要注意每次增加50平方公里,所以每次计算的时候要大减小,然后每次更新保存的数据,然后涉及到一些数学的计算公式,比起前一阵ACM校赛那道“圆锥曲线”(到发布时还没有做出来Orz)还是简单了很很很很很多。。

题目链接

代码:

#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
#include <vector>
#include <cstring>
#include <cmath>
#include <cstdlib>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;

int main(int argc, char** argv) {
//	pi*r*r*1.0/2 == 50 	 r = ?
// 100 == r*r*pi
//	r= sqrt	(pi*a*a+100)*1.0/pi;
 	int n;
 	scanf("%d",&n);
 	for(int i=0;i<n;i++)
{	 
	 double x,y;
 	scanf("%lf%lf",&x,&y);
 	double temp;
 	temp = sqrt(x*x+y*y);
//	printf("%lf",temp);
//	system("pause");
	double a = 0;
 	for(int j=0;j<30;j++)
 	{
 		
 //		printf("%lf\n",sqrt ((3.1415927*a*a+100)*1.0/3.1415927));	
		if(temp<sqrt ((3.1415927*a*a+100)*1.0/3.1415927))
		{
		//	printf("Property %d:This property will begin eroding in year %d.\n",i+1,j+1);
			printf("Property %d: This property will begin eroding in year %d.\n",i+1,j+1);
			break;
		}
		a = sqrt( (3.1415927*a*a+100)*1.0/3.1415927 );
	}
}
printf("END OF OUTPUT.");
	//system("pause");
	return 0;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值