HDU running 5. I Think I Need a Houseboat [math problem] [September 1], hduhouseboat
I Think I Need a Houseboat
Problem Description
Fred Mapper is considering purchasing some land in Louisiana to build his house on. in the process of investigating the land, he learned that the state of Louisiana is actually shrinking by 50 square miles each year, due to erosion caused by the mississiriver. since Fred is hoping to live in this house the rest of his life, he needs to know if his land is going to be lost to erosion.
After doing more research, Fred has learned that the land that is being lost forms a semicircle. this semicircle is part of a circle centered at (0, 0), with the line that bisects the circle being the X axis. locations below the X axis are in the water. the semicircle has an area of 0 at the beginning of year 1. (Semicircle has strated in the Figure .)
InputThe first line of input will be a positive integer indicating how many data sets will be encoded ded (N ).
Each of the next N lines will contain the X and Y Cartesian coordinates of the land Fred is considering. these will be floating point numbers measured in miles. the Y coordinate will be non-negative. (0, 0) will not be given.
OutputFor each data set, a single line of output shoshould appear. This line shoshould take the form:
"Property N: This property will begin eroding in year Z ."
Where N is the data set (counting from 1), and Z is the first year (start from 1) this property will be within the semicircle at the end of year z. Z must be an integer.
After the last data set, this shoshould print out "end of output ."
Notes:
1. No property will appear exactly on the semicircle boundary: it will either be inside or outside.
2. This problem will be judged automatically. Your answer must match exactly, including the capitalization, punctuation, and white-space. This includes des the periods at the ends of the lines.
3. All locations are given in miles.
Sample Input
2 1.0 1.0 25.0 0.0
Sample Output
Property 1: This property will begin eroding in year 1. Property 2: This property will begin eroding in year 20. END OF OUTPUT.
A semi-circle expands by 50 every year and calculates the coverage of known points in the first few years. The Code is as follows:
#include<cstdio>#include<cmath>using namespace std;int main(){ int T; scanf("%d",&T); for(int i=1;i<=T;i++){ double a,b,rr,z=50,s; scanf("%lf %lf",&a,&b); rr=a*a+b*b; s=rr*3.1415926*0.5; int y=s/50; printf("Property %d: This property will begin eroding in year %d.\n",i,y+1); } printf("END OF OUTPUT.\n"); return 0;}
Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.