bzoj 3401 && bzoj 1657 单调栈

61 篇文章 0 订阅
7 篇文章 0 订阅

题意:

bzoj 3401 :对于每一个i,找到离它最近的j满足 i<j 且hi<hj,对于每个i输出对应的j,如果没有满足的j输出0

bzoj 1657 :给定n个高度和音量。对于每一个i,找到离它最近的j1、j2满足 i<j1 且hi<hj1 或 j2<i 且 hi<hj2 ,把i的音量加到j1、j2的答案中,求max{ans[i]}


bzoj 3401 倒序单调栈

type
        rec=record
            h,num:longint;
end;

var
        n,top           :longint;
        i               :longint;
        a,ans           :array[0..100010] of longint;
        z               :array[0..100010] of rec;
begin
   read(n);
   for i:=1 to n do read(a[i]);
   top:=0;
   for i:=n downto 1 do
   begin
      while (top<>0) and (z[top].h<=a[i]) do dec(top);
      if top=0 then ans[i]:=0 else ans[i]:=z[top].num;
      inc(top);
      z[top].h:=a[i]; z[top].num:=i;
   end;
   for i:=1 to n do writeln(ans[i]);
end.


bzoj 1657 正反两遍单调栈

type
        rec=record
            h,num:longint;
end;

var
        n,top           :longint;
        maxn            :int64;
        z               :array[0..50010] of rec;
        h,v             :array[0..50010] of longint;
        ans             :array[0..50010] of int64;
        i               :longint;
begin
   read(n);
   for i:=1 to n do read(h[i],v[i]);
   top:=0;
   //
   for i:=1 to n do
   begin
      while (top<>0) and (z[top].h<=h[i]) do dec(top);
      if top<>0 then inc(ans[z[top].num],int64(v[i]));
      inc(top);
      z[top].h:=h[i]; z[top].num:=i;
   end;
   //
   top:=0;
   for i:=n downto 1 do
   begin
      while (top<>0) and (z[top].h<=h[i]) do dec(top);
      if top<>0 then inc(ans[z[top].num],int64(v[i]));
      inc(top);
      z[top].h:=h[i];  z[top].num:=i;
   end;
   maxn:=0;
   for i:=1 to n do if ans[i]>maxn then maxn:=ans[i];
   writeln(maxn);
end.

——by Eirlys



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值