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;
    }
  • 相关阅读:
    OPENCV图像变换-1
    OPENCV形态学操作1
    OPENCV基本滤波算法
    OSX下编译安装opencv3.1.0与opencv_contrib_master
    iOS8学习笔记-构建多视图应用程序
    iOS8学习笔记2--autolayout
    iOS学习笔记1--在xcode6以上的版本中不使用storyboard以及部分控件使用
    Objective-c学习笔记3
    objective-c学习笔记2
    objective-c学习笔记
  • 原文地址:https://www.cnblogs.com/upstart/p/6009553.html
Copyright © 2011-2022 走看看