zoukankan      html  css  js  c++  java
  • 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. 

    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
    ",num++);
            printf("Water level is %.2f meters.
    ",water);
            printf("%.2f percent of the region is under water.
    
    ",100*i/double(n*m));
        }
        return 0;
    }
  • 相关阅读:
    直接拿来用!最火的前端开源项目(一)
    前端开发框架三剑客
    javascript获取ckeditor编辑器的值(实现代码)
    FireFox不支持InnerText的解决方法
    makefile:4: *** missing separator. Stop.
    javascript跨域解决方案
    wap网站获取访问者手机号PHP类文件
    CentOS安装libpcap
    运用百度开放平台接口根据ip地址获取位置
    azure 云上MySQL最新版本 MySQL5.7.11 批量自动化一键式安装 (转)
  • 原文地址:https://www.cnblogs.com/upstart/p/6009553.html
Copyright © 2011-2022 走看看