表面上看是主席树之类的区间k大

实际上,除了主席树,还可以测各种结构

因为题目中说,任意区间不会完全包含

于是,我们把区间按左端点排序,依次添加,用平衡树求当前的k大

每个狗最多被添加一次,删除一次

所以复杂度为O(nlogn)

被来写的是splay,结果一直WA到死

结果改成treap,第一次写就1Y了,不错

不过调treap需要把一组数据跑很多遍(至少我是这么认为的)

以免出现rp过好导致错误的程序跑对……

 const rd=;
type node=record
       x,y,num,k:longint;
     end;
var ans,pretty,fa,count,key,b:array[..] of longint;
    son:array[..,..] of longint;
    a:array[..] of node;
    p,j,root,n,q,i,t,s:longint; procedure update(i:longint);
  begin
    count[i]:=count[son[i,]]+count[son[i,]]+;
  end; function find(x:longint):longint;
  var p:longint;
  begin
    p:=root;
    repeat
      if b[p]=x then exit(p);
      if b[p]>x then p:=son[p,]
      else p:=son[p,];
    until false;
  end; function kth(x:longint):longint;    //找k大
  var p:longint;
  begin
    p:=root;
    while true do
    begin
      if count[son[p,]]+=x then exit(p);
      if count[son[p,]]+>x then p:=son[p,]
      else begin
        x:=x-count[son[p,]]-;
        p:=son[p,];
      end;
    end;
  end; procedure clear(i:longint);
  begin
    count[i]:=;
    son[i,]:=;
    son[i,]:=;
    fa[]:=;
    count[]:=;
  end; procedure rotate(x,w:longint);   //基本的BST左右旋,和splay是一样的
  var y:longint;
  begin
    y:=fa[x];
    if fa[y]= then root:=x;
    if fa[y]<> then
    begin
      if son[fa[y],]=y then son[fa[y],]:=x
      else son[fa[y],]:=x;
    end;
    fa[x]:=fa[y];
    son[y,-w]:=son[x,w];
    fa[son[x,w]]:=y;
    son[x,w]:=y;
    fa[y]:=x;
    update(y);
    update(x);
  end; procedure swap(var a,b:node);
  var c:node;
  begin
    c:=a;
    a:=b;
    b:=c;
  end; procedure up(i:longint);     //类似堆的上浮操作
  var j:longint;
  begin
    j:=fa[i];
    while j<> do
    begin
      if key[i]<key[j] then 
      begin
        if son[j,]=i then rotate(i,)
        else rotate(i,);
      end
      else break;
      j:=fa[i];
    end;
    if j= then root:=i;
  end; procedure sift(i:longint);   //类似堆的下沉操作
  var j1,j2:longint;
  begin
    repeat
      j1:=son[i,];       //选择较小的那个孩子旋转,使下沉后还能满足小根堆的性质
      j2:=son[i,];
      if (j1=) and (j2=) then break;
      if (j1=) then
        rotate(j2,)
      else if (j2=) then
        rotate(j1,)
      else begin
        if key[j1]>key[j2] then rotate(j2,) else rotate(j1,);
      end;
    until false;
  end; procedure sort(l,r: longint);
  var i,j,x,y: longint;
  begin
    i:=l;
    j:=r;
    x:=a[(l+r) shr ].x;
    repeat
      while (a[i].x<x) do inc(i);
      while (x<a[j].x) do dec(j);
      if not(i>j) then
      begin
        swap(a[i],a[j]);
        inc(i);
        j:=j-;
      end;
    until i>j;
    if l<j then sort(l,j);
    if i<r then sort(i,r);
  end; procedure insert(x:longint);
  var p:longint;
  begin
    inc(t);
    inc(s);
    clear(t);
    key[t]:=trunc(random(rd));    //随机生成一个优先级,这个优先级满足小根堆的性质
    b[t]:=x;
    if root= then
    begin
      root:=t;
      fa[t]:=;
    end
    else begin
      p:=root;    //先插入到treap中
      repeat
        inc(count[p]);
        if b[p]>x then
        begin
          if son[p,]= then break;
          p:=son[p,];
        end
        else begin
          if son[p,]= then break;
          p:=son[p,];
        end;
      until false;
      fa[t]:=p;
      if b[p]>x then son[p,]:=t else son[p,]:=t;
      up(t);       //调整treap
    end;
  end; procedure delete(x:longint);
  var i,p:longint;
  begin
    i:=find(x);
    key[i]:=;   //只是为了清楚,treap删除是把当前节点旋转到叶节点
    dec(s);
    sift(i);
    p:=i;
    while p<>root do    //注意删除时要更改它的父亲(祖先)的子树规模
    begin
      dec(count[fa[p]]);
      p:=fa[p];
    end;
    if son[fa[i],]=i then son[fa[i],]:=
    else son[fa[i],]:=;
    count[i]:=;
    key[i]:=;
    b[i]:=;
    fa[i]:=;
    if s= then root:=;
  end; begin
  randomize;
  readln(n,q);
  for i:= to n do
    read(pretty[i]);
  readln;
  for i:= to q do
  begin
    readln(a[i].x,a[i].y,a[i].k);
    a[i].num:=i;
  end;
  count[]:=;
  sort(,q);
  root:=;
  t:=;
  for i:=a[].x to a[].y do
    insert(pretty[i]);
  ans[a[].num]:=b[kth(a[].k)];
  for i:= to q do   //按顺序一次添加删除
  begin
    if a[i].x>a[i-].y then
    begin
      root:=;
      t:=;
      s:=;
      fillchar(fa,sizeof(fa),);
      fillchar(son,sizeof(son),);
      fillchar(count,sizeof(count),);
      fillchar(b,sizeof(b),);
      fillchar(key,sizeof(key),);
      for j:=a[i].x to a[i].y do
      begin
        insert(pretty[j]);
      end;
    end
    else begin
      for j:=a[i-].y+ to a[i].y do
        insert(pretty[j]);
      for j:=a[i-].x to a[i].x- do
      begin
        delete(pretty[j]);
      end;
    end;
    p:=kth(a[i].k);
    ans[a[i].num]:=b[p];
  end;
  for i:= to q do
    writeln(ans[i]);
end.

poj2761的更多相关文章

  1. 【poj2761】 Feed the dogs

    http://poj.org/problem?id=2761 (题目链接) 题意 求区间第K大. Solution 和poj2104一模一样. 主席树代码 // poj2761 #include< ...

  2. 【莫队算法】【权值分块】poj2104 K-th Number / poj2761 Feed the dogs

    先用莫队算法保证在询问之间转移的复杂度,每次转移都需要进行O(sqrt(m))次插入和删除,权值分块的插入/删除是O(1)的. 然后询问的时候用权值分块查询区间k小值,每次是O(sqrt(n))的. ...

  3. poj2761静态区间第k大

    例题:poj2761 题目要求:给定一个长度为n的序列,给定m个询问,每次询问求[l,r]区间内的第k大: 对于这道题目来说,很多算法都可以使用,比如说树套树(一个负责划分区间,一个负责维护这段区间内 ...

  4. [POJ2761] Feed the dogs (Treap)

    题目链接:http://poj.org/problem?id=2761 题目大意:给你n个数,m次查询,m次查询分别是a,b,k,查询下表从a到b的第k小元素是哪个.这m个区间不会互相包含. Trea ...

  5. [主席树]HDOJ2665 && POJ2104 && POJ2761

    主席树真是神奇的物种! Orz一篇资料 题意:给n.m   下面有n个数 (编号1到n) 有m个询问,询问的是上面的数的编号在[l,r]之间第k小的数 n.m的范围都是$10^5$ 是主席树的入门题 ...

  6. 【POJ2761】【区间第k大】Feed the dogs(吐槽)

    Description Wind loves pretty dogs very much, and she has n pet dogs. So Jiajia has to feed the dogs ...

  7. 【POJ2761】【fhq treap】A Simple Problem with Integers

    Description You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. On ...

  8. poj2761(treap入门)

    给n个数,然后m个询问,询问任意区间的第k小的数,特别的,任意两个区间不存在包含关系, 也就是说,将所有的询问按L排序之后, 对于i<j ,   Li < Lj 且 Ri < Rj ...

  9. [POJ2761]Feed the dogs

    Problem 查询区间第k大,但保证区间不互相包含(可以相交) Solution 只需要对每个区间左端点进行排序,那它们的右端点必定单调递增,不然会出现区间包含的情况. 所以我们暴力对下一个区间加上 ...

随机推荐

  1. STM8S003K3用Tim1的通道4输出20KHz的PWM波

    void Init_pwm(){TIM1_DeInit(); TIM1_TimeBaseInit(0, TIM1_COUNTERMODE_UP, 800, 0x00);//250 TIM1_OC4In ...

  2. 爬虫学习之基于Scrapy的爬虫自动登录

    ###概述 在前面两篇(爬虫学习之基于Scrapy的网络爬虫和爬虫学习之简单的网络爬虫)文章中我们通过两个实际的案例,采用不同的方式进行了内容提取.我们对网络爬虫有了一个比较初级的认识,只要发起请求获 ...

  3. Linux进程间通信IPC学习笔记

    linux下的进程通信手段基本上是从Unix平台上的进程通信手段继承而来的.而对Unix发展做出重大贡献的两大主力AT&T的贝尔实验室及BSD(加州大学伯克利分校的伯克利软件发布中心)在进程间 ...

  4. EXTJS 4.2 资料 控件之combo 联动

    写两个数据源: 1.IM_ST_Module.js { success:true, data:[ { ModuleId: '1', ModuleName: '资讯' } , { ModuleId: ' ...

  5. 微软职位内部推荐-Pricipal Dev Manager for Application Ecosystem & Service

    微软近期Open的职位: Location: China, BeijingDivision: Operations System Group Engineering Group OverviewOSG ...

  6. SC命令执行出现Access is denied

    在命令行中先是打开远程链接:net use \\computername(or ip)\ipc$ "password" /user:"[domain\]username& ...

  7. Code for the Homework2

    第二次作业,最近有点忙,一直没写,先发一下,关节角计算有点问题,后面抽时间改 #include<iostream> #include <Eigen/Dense> #includ ...

  8. man手册使用

    1.是普通的命令 2.是系统调用,如open,write之类的(通过这个,至少可以很方便的查到调用这个函数,需要加什么头文件) 3.是库函数,如printf,fread 4.是特殊文件,也就是/dev ...

  9. bnu 4351 美女来找茬(水水)

    http://www.bnuoj.com/bnuoj/problem_show.php?pid=4351 [题意]:用最小的矩形框,框住像素点差超过5的点. [题解]:求坐标x,y最大最小值 [cod ...

  10. HTML5的本地存储 LocalStorage

    localStorage顾名思义,就是本地存储的意思,在以前很长一段时间,要想在客户端存 储一些配置及登录信息等数据都只能通过COOKIE或flash的方式,如今html5来临,也 带来了更强大的本地 ...