• hdu2795(Billboard)线段树


    Billboard

    Time Limit: 20000/8000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 8266    Accepted Submission(s): 3676

    Problem Description
    At the entrance to the university, there is a huge rectangular billboard of size h*w (h is its height and w is its width). The board is the place where all possible announcements are posted: nearest programming competitions, changes in the dining room menu, and other important information.
    On September 1, the billboard was empty. One by one, the announcements started being put on the billboard.
    Each announcement is a stripe of paper of unit height. More specifically, the i-th announcement is a rectangle of size 1 * wi.
    When someone puts a new announcement on the billboard, she would always choose the topmost possible position for the announcement. Among all possible topmost positions she would always choose the leftmost one.
    If there is no valid location for a new announcement, it is not put on the billboard (that's why some programming contests have no participants from this university).
    Given the sizes of the billboard and the announcements, your task is to find the numbers of rows in which the announcements are placed.
     
    Input
    There are multiple cases (no more than 40 cases).
    The first line of the input file contains three integer numbers, h, w, and n (1 <= h,w <= 10^9; 1 <= n <= 200,000) - the dimensions of the billboard and the number of announcements.
    Each of the next n lines contains an integer number wi (1 <= wi <= 10^9) - the width of i-th announcement.
     
    Output
    For each announcement (in the order they are given in the input file) output one number - the number of the row in which this announcement is placed. Rows are numbered from 1 to h, starting with the top row. If an announcement can't be put on the billboard, output "-1" for this announcement.
     
    Sample Input
    3 5 5 2 4 3 3 3
     
    Sample Output
    1 2 1 3 -1
    思路:因为每个广告的高度为1,所以线段树只要维护1,min(h,n)的区间就行了。
     1 #include <stdio.h>
     2 #include <string.h>
     3 #include <algorithm>
     4 #define N 200005
     5 using namespace std;
     6 int segtree[N << 2];
     7 int update(int l, int r, int p, int v)//更新并返回结果
     8 {
     9     if (l < r)
    10     {
    11         if (segtree[p] >= v)//说明有结果
    12         {
    13             int mid = (l + r) >> 1, pp = p << 1, ans;
    14             if (segtree[pp] >= v)//结果在左区间
    15                 ans = update(l, mid, pp, v);
    16             else//结果在右区间
    17                 ans = update(mid + 1, r, pp + 1, v);
    18             segtree[p] = max(segtree[pp], segtree[pp + 1]);
    19             return ans;
    20         } 
    21         else
    22             return -1;
    23     }
    24     else
    25     {
    26         segtree[p] -= v;
    27         return l;
    28     }
    29 }
    30 
    31 int main()
    32 {
    33     int h, w, n, i, t, tt;
    34     while (~scanf("%d%d%d", &h, &w, &n))
    35     {
    36         for (i = 0; i < (N << 2); i++)
    37             segtree[i] = w;
    38         tt = min(h, n);
    39         for (i =1; i <= n; i++)
    40         {
    41             scanf("%d", &t);
    42             if (t > w)//不需查询
    43             {
    44                 printf("-1
    ");
    45                 continue;
    46             }
    47             printf("%d
    ", update(1, tt, 1, t));
    48         }
    49     }
    50 }
     
  • 相关阅读:
    pycharm使用小技巧
    多线程的异常处理
    零星
    python的多线程 ThreadPoolExecutor
    零星
    python的轮询timer 和js的轮询setInterval
    fcitx 输入框纵向
    Gvim配置
    窗口,父窗口parentwindow,所有者窗口ownerwindow
    Request对象 --web浏览器向web服务端的请求
  • 原文地址:https://www.cnblogs.com/jecyhw/p/3447017.html
Copyright © 2020-2023  润新知