zoukankan      html  css  js  c++  java
  • codeforces A. Zoning Restrictions Again

    A. Zoning Restrictions Again

         ou are planning to build housing on a street. There are n spots available on the street on which you can build a house. The spots are labeled from 1 to n from left to right. In each spot, you can build a house with an integer height between 0 and h.
        In each spot, if a house has height a, you will gain a2 dollars from it.
        The city has m zoning restrictions. The i-th restriction says that the tallest house from spots li to ri (inclusive) must be at most xi.
        You would like to build houses to maximize your profit. Determine the maximum profit possible.
    Input
        The first line contains three integers n, h, and m (1≤n,h,m≤50) — the number of spots, the maximum height, and the number of restrictions.
        Each of the next m lines contains three integers li, ri, and xi (1≤li≤ri≤n, 0≤xi≤h) — left and right limits (inclusive) of the i-th restriction and the maximum possible height in that range.
    Output
    Print a single integer, the maximum profit you can make.
    Examples
    input
    inputCopy
    3 3 3
    1 1 1
    2 2 3
    3 3 2
    outputCopy
    14

    inputCopy
    4 10 2
    2 3 8
    3 4 7
    outputCopy
    262
    Note
        In the first example, there are 3 houses, the maximum height of a house is 3, and there are 3 restrictions. The first restriction says the tallest house between 1 and 1 must be at most 1. The second restriction says the tallest house between 2 and 2 must be at most 3. The third restriction says the tallest house between 3 and 3 must be at most 2.
    In this case, it is optimal to build houses with heights [1,3,2]. This fits within all the restrictions. The total profit in this case is 12+32+22=14.
        In the second example, there are 4 houses, the maximum height of a house is 10, and there are 2 restrictions. The first restriction says the tallest house from 2 to 3 must be at most 8. The second restriction says the tallest house from 3 to 4 must be at most 7.
        In this case, it’s optimal to build houses with heights [10,8,7,7]. We get a profit of 102+82+72+72=262. Note that there are two restrictions on house 3 and both of them must be satisfied. Also, note that even though there isn’t any explicit restrictions on house 1, we must still limit its height to be at most 10 (h=10).
        题意:你需要建很多房屋有n个地方,然后房屋有最初高度限制m,在这城市有t(t属于0-n的闭区间)个路段限制高度ti,建一个房屋你会获利它们高度平的方(美元)
        解题思路:开一个数组让数组等于开始总高度限制,然后用这个初始高度数组比较每个路段的高度,取他们的最小值,最后用一个for循环遍历运算求最大的获利

     1 #include"iostream"
     2 #include"algorithm"
     3 #include"math.h"
     4 using namespace std;  
     5 int n,m,t,a[100],sum,ni,mi,ti;;
     6 int main(){ 
     7    cin>>n>>m>>t;
     8    for(int i=1;i<=n;i++){
     9        a[i]=m;
    10    }
    11    while(t--){
    12        cin>>ni>>mi>>ti;
    13        for(int j=ni;j<=mi;j++)a[j]=min(a[j],ti);
    14    }
    15    
    16    for(int i=1;i<=n;i++) {
    17      sum+=a[i]*a[i];
    18    }    
    19    cout<<sum<<endl;
    20 }

     

  • 相关阅读:
    机器学习入坑指南(二):数据预处理
    03双向链表
    小甲鱼 例题
    快慢指针问题
    02循环单链表
    01静态链表
    阈值化
    图像金字塔与图片尺寸缩放
    水漫填充
    形态学滤波(4):使用分水岭算法对图像进行分割
  • 原文地址:https://www.cnblogs.com/huangdf/p/12227138.html
Copyright © 2011-2022 走看看