POJ-1877 Flooded!(贪心模拟)

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. 

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.
很简单的一道题,按照高度从小到大排序后,每次判断当前剩余水量能否填到下一高度,

如果可以就减去那些水量,然后高度就为下一高度,不行的话就算下当前剩余水量能到多高。

扫描二维码关注公众号,回复: 1425379 查看本文章

但是莫名其妙wa了好多次,最后把存高度的数组改成了double类型就过了,可能还是有些细节没有写好

[cpp]  view plain  copy
  1. #include <cstdio>  
  2. #include <iostream>  
  3. #include <algorithm>  
  4. #define INF 0x3f3f3f3f  
  5. using namespace std;  
  6. double arr[1000];  
  7.   
  8. int main()  
  9. {  
  10.     int n,m,ca=0,sum,i;  
  11.     while(cin>>n>>m,n||m)  
  12.     {  
  13.         double ans;  
  14.         for(i=0;i<n*m;i++)  
  15.         {  
  16.             cin>>arr[i];  
  17.         }  
  18.         cin>>sum;  
  19.         sort(arr,arr+m*n);  
  20.         arr[n*m]=INF;  
  21.         ans=arr[0];  
  22.         for(i=1;i<=n*m;i++)  
  23.         {  
  24.             if(sum>i*100*(arr[i]-arr[i-1]))  
  25.             {  
  26.                 ans=arr[i];  
  27.                 sum-=i*100*(arr[i]-arr[i-1]);  
  28.             }  
  29.             else  
  30.             {  
  31.                 ans+=(double)sum/(100*i);  
  32.                 break;  
  33.             }  
  34.            // printf("%f\n",ans);  
  35.         }  
  36.         printf("Region %d\n",++ca);  
  37.         printf("Water level is %.2f meters.\n",ans);  
  38.         printf("%.2f percent of the region is under water.\n",i/(double)(n*m)*100);  
  39.     }  
  40.     return 0;  
  41. }  

猜你喜欢

转载自blog.csdn.net/qq_39027601/article/details/80075707