https://www.zybuluo.com/ysner/note/1295414

题面

\(R\)是一个猎人,他准备打猎,他站在平面直角坐标系的\((0,0)\)位置。

天上有\(n\)只小鸟从右往左以\(1m/s\)的速度水平飞过,每只小鸟都是一条水平方向的线段。

由于\(R\)枪法不太好,他只会竖直向上开枪,此时与\(y\)轴有交(包括端点)的小鸟都会被击中并成为\(R\)的猎物。

\(R\)在开完一枪后需要\(k\)秒来装弹,在此期间不能再次开枪。

你需要求出\(R\)最多能得到多少只猎物。

  • \(n\leq10^5,\max\{|l|,|r|\}\leq5*10^5\)

解析

很容易能想到一个\(DP\)方程式:

设\(f_i\)表示当时间进行到时刻\(i\),并且这时打一枪,最多总共获得多少猎物。

设\(s_i\)表示在时间\(i\)打一枪能获得多少收益。

设\(chongfu(i,j)\)表示\(s_i\)与\(f_j\)中包含猎物的重复个数。

则$$f_i=\max_{j=0}^{i-k}{f_j-chongfu(i,j)}+s_i$$

看起来那个\(chongfu(i,j)\)相当难求,因为每转移一次,都要维护转移到\(f_i\)的猎物,还要去重,复杂度很危险。

其实不妨这么想,可以用差分\(O(n)\)求出所有\(s_j\)。同时出现在\(j\)、\(i\)的线段,就是在\(j\)中出现后,到\(i\)时没有被删除的线段。

我们可以在更新\(f_j\)的值时,在线段树上将其更新为:\(f_j-\)在时刻\(j\)出现的边,这样每当一条线段终结时,在线段树上给这条线段区间加一即可。

这样在到时刻\(i\)时,\(f_j\)的值就是\(f_j-chongfu(i,j)\)。

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<vector>
#include<set>
#define ll long long
#define re register
#define il inline
#define ls x<<1
#define rs x<<1|1
#define pb(a) push_back(a)
#define fp(i,a,b) for(re int i=a;i<=b;i++)
#define fq(i,a,b) for(re int i=a;i>=b;i--)
using namespace std;
const int N=5e5+100;
struct dat
{
int l,r;
il bool operator < (const dat &o) const
{
if(r==o.r) return l<o.l;
return r<o.r;
}
}a[N];
int n,m,k,tot,cha[N],in[N],mx,p=1,ans,now,t[N<<2],tag[N<<2],f[N];
il int gi()
{
re int x=0,t=1;
re char ch=getchar();
while(ch!='-'&&(ch<'0'||ch>'9')) ch=getchar();
if(ch=='-') t=-1,ch=getchar();
while(ch>='0'&&ch<='9') x=x*10+ch-48,ch=getchar();
return x*t;
}
il void upd(re int x){t[x]=max(t[ls],t[rs]);}
il void cover(re int x,re int w){t[x]+=w;tag[x]+=w;}
il void Pushdown(re int x){cover(ls,tag[x]);cover(rs,tag[x]);tag[x]=0;}
il void Modify(re int x,re int l,re int r,re int pos,re int w)
{
if(l==r) {t[x]=w;return;}
re int mid=l+r>>1;
if(tag[x]) Pushdown(x);
if(pos<=mid) Modify(ls,l,mid,pos,w);
else Modify(rs,mid+1,r,pos,w);
upd(x);
}
il void Modify(re int x,re int l,re int r,re int ql,re int qr,re int w)
{
if(ql<=l&&r<=qr) {cover(x,w);return;}
re int mid=l+r>>1;
if(tag[x]) Pushdown(x);
if(ql<=mid) Modify(ls,l,mid,ql,qr,w);
if(qr>mid) Modify(rs,mid+1,r,ql,qr,w);
upd(x);
}
il int Query(re int x,re int l,re int r,re int ql,re int qr)
{
if(ql<=l&&r<=qr) return t[x];
re int mid=l+r>>1;
if(tag[x]) Pushdown(x);
if(qr<=mid) return Query(ls,l,mid,ql,qr);
if(ql>mid) return Query(rs,mid+1,r,ql,qr);
return max(Query(ls,l,mid,ql,qr),Query(rs,mid+1,r,ql,qr));
}
int main()
{
freopen("bird.in","r",stdin);
freopen("bird.out","w",stdout);
n=gi();k=gi();
fp(i,1,n)
{
re int l=max(0,gi()),r=gi();
if(r<0) continue;++l;++r;
a[++tot]=(dat){l,r};
++cha[l];++in[l];--cha[r+1];mx=max(mx,r+1);
}
sort(a+1,a+1+tot);
fp(i,1,mx) cha[i]+=cha[i-1];
fp(i,1,mx)
{
f[i]=cha[i]+Query(1,0,mx,max(0,i-2*k),max(0,i-k));
ans=max(ans,f[i]);now+=in[i];
Modify(1,0,mx,i,f[i]-now);
while(p<=tot&&a[p].r==i)
{
--now;
Modify(1,0,mx,a[p].l,a[p].r,1);
++p;
}
}
printf("%d\n",ans);
fclose(stdin);
fclose(stdout);
return 0;
}

[noip模拟赛]bird的更多相关文章

  1. NOIP模拟赛20161022

    NOIP模拟赛2016-10-22 题目名 东风谷早苗 西行寺幽幽子 琪露诺 上白泽慧音 源文件 robot.cpp/c/pas spring.cpp/c/pas iceroad.cpp/c/pas ...

  2. contesthunter暑假NOIP模拟赛第一场题解

    contesthunter暑假NOIP模拟赛#1题解: 第一题:杯具大派送 水题.枚举A,B的公约数即可. #include <algorithm> #include <cmath& ...

  3. NOIP模拟赛 by hzwer

    2015年10月04日NOIP模拟赛 by hzwer    (这是小奇=> 小奇挖矿2(mining) [题目背景] 小奇飞船的钻头开启了无限耐久+精准采集模式!这次它要将原矿运到泛光之源的矿 ...

  4. 大家AK杯 灰天飞雁NOIP模拟赛题解/数据/标程

    数据 http://files.cnblogs.com/htfy/data.zip 简要题解 桌球碰撞 纯模拟,注意一开始就在袋口和v=0的情况.v和坐标可以是小数.为保险起见最好用extended/ ...

  5. 队爷的讲学计划 CH Round #59 - OrzCC杯NOIP模拟赛day1

    题目:http://ch.ezoj.tk/contest/CH%20Round%20%2359%20-%20OrzCC杯NOIP模拟赛day1/队爷的讲学计划 题解:刚开始理解题意理解了好半天,然后发 ...

  6. 队爷的Au Plan CH Round #59 - OrzCC杯NOIP模拟赛day1

    题目:http://ch.ezoj.tk/contest/CH%20Round%20%2359%20-%20OrzCC杯NOIP模拟赛day1/队爷的Au%20Plan 题解:看了题之后觉得肯定是DP ...

  7. 队爷的新书 CH Round #59 - OrzCC杯NOIP模拟赛day1

    题目:http://ch.ezoj.tk/contest/CH%20Round%20%2359%20-%20OrzCC杯NOIP模拟赛day1/队爷的新书 题解:看到这题就想到了 poetize 的封 ...

  8. CH Round #58 - OrzCC杯noip模拟赛day2

    A:颜色问题 题目:http://ch.ezoj.tk/contest/CH%20Round%20%2358%20-%20OrzCC杯noip模拟赛day2/颜色问题 题解:算一下每个仆人到它的目的地 ...

  9. CH Round #52 - Thinking Bear #1 (NOIP模拟赛)

    A.拆地毯 题目:http://www.contesthunter.org/contest/CH%20Round%20%2352%20-%20Thinking%20Bear%20%231%20(NOI ...

随机推荐

  1. 树莓派 - gpio-led platform driver 控制LED

    树莓派3b板上有两个LED, pwr (power) 和 act (activity).是platform_driver gpio-led驱动. 可以通过设备树和gpio-led来额外控制一个LED. ...

  2. PHP 反射API

    出处:http://blog.csdn.net/hguisu/article/details/7357421 PHP5添加了一项新的功能:Reflection.这个功能使得phper可以reverse ...

  3. LeetCode(48)Rotate Image

    题目 You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (clockwise ...

  4. 【ZOJ - 3780】 Paint the Grid Again (拓扑排序)

    Leo has a grid with N × N cells. He wants to paint each cell with a specific color (either black or ...

  5. loadrunner-3个难点

    1.loadrunner 监控windows资源 2.loadrunner如何实现如下: 1.1.1.1 场景一 10进程同时新增用户 测试场景说明:10进程新增用户, 第一个进程从1到1000,第二 ...

  6. table 设置自动宽度后 td 的固定宽度 在 谷歌浏览器自动拉伸

    table   设置自动宽度后   td 的固定宽度  在 谷歌浏览器自动拉伸 解决方案 <table style="table-layout:fixed;">

  7. BestCoder Round #29 GTY's gay friends

    #include <cstdio> #include <cstring> #include <vector> #include <algorithm> ...

  8. JS基础:函数

    函数声明和函数表达式 在 JS 中定义函数的方式有两种:一种是函数声明,一种是函数表达式. 例如: //函数声明 function fun() { ... } //函数表达式 var f = func ...

  9. JPA的一些坑

    推荐一篇比较好的介绍JPA的文章:使用 Spring Data JPA 简化 JPA 开发 JPA坑1:不支持Limit查询 JPA是不支持Limit分页查询,而我们有时又因为某些原因不想用JPA提供 ...

  10. 守卫者的挑战(codevs 1997)

    题目描述 Description 打开了黑魔法师Vani的大门,队员们在迷宫般的路上漫无目的地搜寻着关押applepi的监狱的所在地.突然,眼前一道亮光闪过.“我,Nizem,是黑魔法圣殿的守卫者.如 ...