首页 > 代码库 > Flooded!
Flooded!
Flooded!
Time Limit: 1000MS | Memory Limit: 30000K | |||
Total Submissions: 5955 | Accepted: 1800 | Special Judge |
Description
To enable homebuyers to estimate the cost of flood insurance, a real-estate firm provides clients with the elevation of each 10-meter by 10-meter square of land in regions where homes may be purchased. Water from rain, melting snow, and burst water mains will collect first in those squares with the lowest elevations, since water from squares of higher elevation will run downhill. For simplicity, we also assume that storm sewers enable water from high-elevation squares in valleys (completely enclosed by still higher elevation squares) to drain to lower elevation squares, and that water will not be absorbed by the land.
From weather data archives, we know the typical volume of water that collects in a region. As prospective homebuyers, we wish to know the elevation of the water after it has collected in low-lying squares, and also the percentage of the region‘s area that is completely submerged (that is, the percentage of 10-meter squares whose elevation is strictly less than the water level). You are to write the program that provides these results.
From weather data archives, we know the typical volume of water that collects in a region. As prospective homebuyers, we wish to know the elevation of the water after it has collected in low-lying squares, and also the percentage of the region‘s area that is completely submerged (that is, the percentage of 10-meter squares whose elevation is strictly less than the water level). You are to write the program that provides these results.
Input
The input consists of a sequence of region descriptions. Each begins with a pair of integers, m and n, each less than 30, giving the dimensions of the rectangular region in 10-meter units. Immediately following are m lines of n integers giving the elevations of the squares in row-major order. Elevations are given in meters, with positive and negative numbers representing elevations above and below sea level, respectively. The final value in each region description is an integer that indicates the number of cubic meters of water that will collect in the region. A pair of zeroes follows the description of the last region.
Output
For each region, display the region number (1, 2, ...), the water level (in meters above or below sea level) and the percentage of the region‘s area under water, each on a separate line. The water level and percentage of the region‘s area under water are to be displayed accurate to two fractional digits. Follow the output for each region with a blank line.
Sample Input
3 3 25 37 45 51 12 34 94 83 27 10000 0 0
Sample Output
Region 1 Water level is 46.67 meters. 66.67 percent of the region is under water.
#include<iostream> #include<cstdio> #include<algorithm> #include<cstring> #include<fstream> using namespace std; #define LEN 1000 int main (void) { int n,m,start,maxn,num,sum,i; int region[LEN]; double water,remain; num=1; while(cin>>n>>m&&(n||m)){ for(i=0;i<n*m;i++) cin>>region[i]; cin>>maxn; sort(region,region+n*m); start=region[0]; sum=0; for(i=1;i<n*m;i++) if(sum+(region[i]-start)*i*100<=maxn){ sum+=(region[i]-start)*i*100; start=region[i]; } else break; remain=maxn-sum; water=region[i-1]+remain/(double(i)*100.0); for(i=0;region[i]<water&&i<n*m;i++); printf("Region %d\n",num++); printf("Water level is %.2f meters.\n",water); printf("%.2f percent of the region is under water.\n\n",100*i/double(n*m)); } return 0; }
Flooded!
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。