• POJ 2761 Feed the dogs(平衡树or划分树or主席树)


    Description

    Wind loves pretty dogs very much, and she has n pet dogs. So Jiajia has to feed the dogs every day for Wind. Jiajia loves Wind, but not the dogs, so Jiajia use a special way to feed the dogs. At lunchtime, the dogs will stand on one line, numbered from 1 to n, the leftmost one is 1, the second one is 2, and so on. In each feeding, Jiajia choose an inteval[i,j], select the k-th pretty dog to feed. Of course Jiajia has his own way of deciding the pretty value of each dog. It should be noted that Jiajia do not want to feed any position too much, because it may cause some death of dogs. If so, Wind will be angry and the aftereffect will be serious. Hence any feeding inteval will not contain another completely, though the intervals may intersect with each other. 
    Your task is to help Jiajia calculate which dog ate the food after each feeding. 

    Input

    The first line contains n and m, indicates the number of dogs and the number of feedings. 
    The second line contains n integers, describe the pretty value of each dog from left to right. You should notice that the dog with lower pretty value is prettier. 
    Each of following m lines contain three integer i,j,k, it means that Jiajia feed the k-th pretty dog in this feeding. 
    You can assume that n<100001 and m<50001. 

    Output

    Output file has m lines. The i-th line should contain the pretty value of the dog who got the food in the i-th feeding.
     

    题目大意:给n个数,m次询问区间[l, r]的第k小数。

    思路:对询问排序,再离线处理每一个询问(加减点直至平衡树对应区间等于询问区间),不过这样做复杂度是没有保障的……因此差不多的题目如POJ2104妥妥地TLE了……

    关于正解之划分树和主席树这里不写。

    关于划分树和主席树:

    POJ 2104 K-th Number(划分树)

    POJ 2104 K-th Number(不带修改主席树——附讲解)

     

    代码(3438MS)(treap树):

      1 #include <cstdio>
      2 #include <cstring>
      3 #include <iostream>
      4 #include <algorithm>
      5 using namespace std;
      6 
      7 const int MAXN = 100010;
      8 
      9 int key[MAXN], weight[MAXN], child[MAXN][2], size[MAXN];
     10 int stk[MAXN], top, cnt;
     11 
     12 inline void init() {
     13     top = cnt = 0;
     14 }
     15 
     16 inline int new_node(int k) {
     17     int x = (top ? stk[top--] : ++cnt);
     18     key[x] = k;
     19     size[x] = 1;
     20     weight[x] = rand();
     21     child[x][0] = child[x][1] = 0;
     22     return x;
     23 }
     24 
     25 inline void update(int &x) {
     26     size[x] = size[child[x][0]] + size[child[x][1]] + 1;
     27 }
     28 
     29 void rotate(int &x, int t) {
     30     int y = child[x][t];
     31     child[x][t] = child[y][t ^ 1];
     32     child[y][t ^ 1] = x;
     33     update(x); update(y);
     34     x = y;
     35 }
     36 
     37 void insert(int &x, int k) {
     38     if(x == 0) x = new_node(k);
     39     else {
     40         int t = key[x] < k;
     41         insert(child[x][t], k);
     42         if(weight[child[x][t]] < weight[x]) rotate(x, t);
     43     }
     44     update(x);
     45 }
     46 
     47 void remove(int &x, int k) {
     48     if(key[x] == k) {
     49         if(child[x][0] && child[x][1]) {
     50             int t = weight[child[x][0]] < weight[child[x][1]];
     51             rotate(x, t); remove(child[x][t ^ 1], k);
     52         }
     53         else {
     54             stk[++top] = x;
     55             x = child[x][0] + child[x][1];
     56         }
     57     }
     58     else remove(child[x][key[x] < k], k);
     59     if(x > 0) update(x);
     60 }
     61 
     62 int kth(int &x, int k) {
     63     if(x == 0 || k <= 0 || k > size[x]) return 0;
     64     int s = 0;
     65     if(child[x][0]) s = size[child[x][0]];
     66     if(k == s + 1) return key[x];
     67     if(k <= s) return kth(child[x][0], k);
     68     return kth(child[x][1], k - s - 1);
     69 }
     70 
     71 struct Node {
     72     int l, r, k, id;
     73     void read(int i) {
     74         id = i;
     75         scanf("%d%d%d", &l, &r, &k);
     76     }
     77     bool operator < (const Node &rhs) const {
     78         if(r != rhs.r) return r < rhs.r;
     79         return l < rhs.l;
     80     }
     81 };
     82 
     83 Node query[MAXN];
     84 int a[MAXN], ans[MAXN];
     85 
     86 int main() {
     87     int n, m;
     88     scanf("%d%d", &n, &m);
     89     for(int i = 1; i <= n; ++i) scanf("%d", &a[i]);
     90     for(int i = 0; i < m; ++i) query[i].read(i);
     91     sort(query, query + m);
     92     int left = 1, right = 0, root = 0;
     93     for(int i = 0; i < m; ++i) {
     94         while(right < query[i].r)
     95             if(!root) root = new_node(a[++right]);
     96             else insert(root, a[++right]);
     97         while(left > query[i].l)
     98             if(!root) root = new_node(a[--left]);
     99             else insert(root, a[--left]);
    100         while(left < query[i].l) remove(root, a[left++]);
    101         ans[query[i].id] = kth(root, query[i].k);
    102     }
    103     for(int i = 0; i < m; ++i) printf("%d
    ", ans[i]);
    104 }
    View Code
  • 相关阅读:
    CLR via C#
    一些写英文简历的词汇
    组合与组合数
    A lowlevel Look at the ASP.NET Architecture
    \r与\n的区别,\r\n与\n或\r的区别(C语言/C#)
    Canvas lineWidth 属性 【每日一段代码18】
    程序员三大世界观 如何看待HTML5
    Canvas运用样式与颜色fillStyle【每日一段代码15】
    Canvas绘制路径:贝塞尔曲线【每日一段代码12】
    Canvas绘制弧形【每日一段代码10】
  • 原文地址:https://www.cnblogs.com/oyking/p/3297835.html
Copyright © 2020-2023  润新知