zoukankan      html  css  js  c++  java
  • UVA 815 Flooded!

      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.
    


     

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <cstdlib>
    using namespace std;
    
    int in[1024];
    int full[1024];  //full[i]表示有i个已满时的水量
    
    int solve_percent(int total, int sum)
    {
        int i;
        int cnt_full;
        full[0]= 0;
        for(int i=1; i<total; i++)
            full[i] = full[i-1] + (in[i]-in[i-1])*100*i;
        if(sum > full[total-1])
            return total;
        for(int i=0; i<total; i++)
        {
            if(full[i]>=sum)
            {
                cnt_full = i;
                return cnt_full;
            }
        }
    }
    int main()
    {
        int m, n, total;
        int kase=1;
        while(memset(in,0,sizeof(in)), memset(full,0,sizeof(full)), scanf("%d %d",&m,&n), !(m==0 && n==0))
        {
            total = m * n;
            int sum;
            int cnt_have;
            double high;
            for(int i=0; i<total; i++)
                scanf("%d",&in[i]);
            scanf("%d",&sum);
            sort(in, in+total);
    
            cnt_have = solve_percent(total, sum);
            high = (double)in[cnt_have-1] + (sum*1.0-(double)full[cnt_have-1])/(100.0*cnt_have);
    
            printf("Region %d
    ",kase++);
            printf("Water level is %.2f meters.
    ",high);
            if(cnt_have==total)
                printf("100.00 percent of the region is under water.
    ");
            else
                printf("%.2f percent of the region is under water.
    ",(double)cnt_have*100.0/(double)total);
            printf("
    ");
        }
        return 0;
    }
    


     

  • 相关阅读:
    Github 上 36 个最实用的 Vue 开源库
    C 语言快速入门,21 个小项目足矣!「不走弯路就是捷径」
    18个挑战项目带你快速入门深度学习
    Linux 运维入门到跑路书单推荐
    Python 网络爬虫的常用库汇总
    45 个常用Linux 命令,让你轻松玩转Linux!
    [新手必备]Python 基础入门必学知识点笔记
    快速入门 Python 数据分析实用指南
    18位不重复订单号
    相对路径转绝对路径
  • 原文地址:https://www.cnblogs.com/kunsoft/p/5312801.html
Copyright © 2011-2022 走看看