码迷,mamicode.com
首页 > Web开发 > 详细

JSOI2008最大数(线段树)

时间:2014-06-02 14:01:28      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

注意到数列只增不减,而题目中又明确说道m<=200000;这样的数据规模线段树完全可以承受得了。所以我们可以事先建好一棵200000个子节点的线段树,然后求极值就好了。

bubuko.com,布布扣
type node=record l,r,mx:longint;end;
var i,j,m,p,x,tmp,tot:longint;
    ch:char;
    t:array[0..1500000] of node;
    function max(x,y:longint):longint;
     begin
     if x>y then exit(x) else exit(y);
     end;
procedure build(x,y,k:longint);
 var mid:longint;
 begin
 with t[k] do
  begin
   l:=x;r:=y;
   if l=r then exit;
   mid:=(l+r)>>1;
   build(x,mid,k<<1);
   build(mid+1,r,k<<1+1);
  end;
 end;
procedure change(x,y,k:longint);
 var mid:longint;
 begin
 with t[k] do
  begin
   if l=r then
    begin
    mx:=y;
    exit;
    end;
   mid:=(l+r)>>1;
   if x>mid then change(x,y,k<<1+1)
   else change(x,y,k<<1);
  mx:=max(t[k<<1].mx,t[k<<1+1].mx);
  end;
 end;
function getmx(x,y,k:longint):longint;
 var mid:longint;
 begin
 with t[k] do
  begin
  if (l=x) and (r=y) then exit(mx);
  mid:=(l+r)>>1;
  if x>mid then exit(getmx(x,y,k<<1+1))
  else if y<=mid then exit(getmx(x,y,k<<1))
  else exit(max(getmx(x,mid,k<<1),getmx(mid+1,y,k<<1+1)));
  end;
 end;
procedure main;
 begin
 build(1,200000,1);
 readln(m,p);tmp:=0;tot:=0;
 for i:=1 to m do
  begin
   read(ch);
   if ch=A then
    begin
    readln(x);
    inc(tot);
    change(tot,(x+tmp) mod p,1);
    end
   else
    begin
    readln(x);
    tmp:=getmx(tot-x+1,tot,1);
    writeln(tmp);
    end;
  end;
 end;
begin
 main;
end.                 
bubuko.com,布布扣

不过话说起来,1A的感觉真棒!

JSOI2008最大数(线段树),布布扣,bubuko.com

JSOI2008最大数(线段树)

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/zyfzyf/p/3763077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!