hdu-5700 区间交(二分+树状数组)

时间:2022-09-24 10:12:38

题目链接:

区间交

Problem Description
 

小A有一个含有n个非负整数的数列与mm个区间。每个区间可以表示为l​i​​,r​i​​。

它想选择其中k个区间, 使得这些区间的交的那些位置所对应的数的和最大。

例如样例中,选择[2,5]与[4,5]两个区间就可以啦。

Input
 

多组测试数据

第一行三个数n,k,m(1≤n≤100000,1≤k≤m≤100000)。

接下来一行n个数a​i​​,表示lyk的数列(0≤a​i​​≤10​9​​)。

接下来m行,每行两个数l​i​​,r​i​​,表示每个区间(1≤l​i​​≤r​i​​≤n)。

Output
 

一行表示答案

Sample Input
 
5 2 3
1 2 3 4 6
4 5
2 5
1 4
Sample Output
 
10

题意:

思路:

求相交区间和的最大值,首先是树状数组sum可以求log(n)求区间和,在找区间的时候枚举左端点,二分右端点,先把区间按左端点排序,然后一边更新一边询问,由于按左端点排序,所以左端点可以作为相交区间的左端点,二分右端点时询问这个点是否被大于等于k次覆盖,找到右端点最大的那个点,此时对应的区间就是这个左端点能得到的最大的区间,枚举完左端点就可以找到最大值了;
复杂度好像是mlog(n)log(n); AC代码:
#include <bits/stdc++.h>
/*
#include <iostream>
#include <queue>
#include <cmath>
#include <map>
#include <cstring>
#include <algorithm>
#include <cstdio>
*/
using namespace std;
#define Riep(n) for(int i=1;i<=n;i++)
#define Riop(n) for(int i=0;i<n;i++)
#define Rjep(n) for(int j=1;j<=n;j++)
#define Rjop(n) for(int j=0;j<n;j++)
#define mst(ss,b) memset(ss,b,sizeof(ss));
typedef long long LL;
const LL mod=1e9+;
const double PI=acos(-1.0);
const int inf=0x3f3f3f3f;
const int N=1e5+;
int n,k,m;
LL a[N];
LL sum[N];
int num[N];
struct node
{
int l,r;
}po[N];
int cmp(node x,node y)
{
if(x.l==y.l)x.r>y.r;
return x.l<y.l;
}
int lowbit(int x)
{
return x&(-x);
}
void update(int x,LL y)
{
while(x<=n)
{
sum[x]+=y;
x+=lowbit(x);
}
}
LL query(int pos)
{
LL ans=;
while(pos>)
{
ans+=sum[pos];
pos-=lowbit(pos);
}
return ans;
}
void update1(int x,int flag)
{
while(x<=n)
{
num[x]+=flag;
x+=lowbit(x);
}
}
int query1(int x)
{
int ans=;
while(x>)
{
ans+=num[x];
x-=lowbit(x);
}
return ans;
}
int check(int x)
{
if(query1(x)>=k)return ;
return ;
}
int main()
{
while(scanf("%d%d%d",&n,&k,&m)!=EOF)
{
LL ans=;
mst(num,);
mst(sum,);
Riep(n)scanf("%lld",&a[i]),update(i,a[i]);
Riep(m)scanf("%d%d",&po[i].l,&po[i].r);
sort(po+,po+m+,cmp);
for(int i=;i<=m;i++)
{
update1(po[i].l,);
update1(po[i].r+,-);
int L=po[i].l,R=po[i].r;
while(L<=R)
{
int mid=(L+R)>>;
if(check(mid))L=mid+;
else R=mid-;
}
LL fx=query(L-),fy;
if(po[i].l>)fy=query(po[i].l-);
else fy=;
ans=max(ans,fx-fy);
}
printf("%lld\n",ans);
}
return ;
}

hdu-5700 区间交(二分+树状数组)的更多相关文章

  1. hdu 5700区间交&lpar;线段树&rpar;

    区间交 Time Limit: 8000/4000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submiss ...

  2. ACM学习历程—51NOD 1685 第K大区间2&lpar;二分 &amp&semi;&amp&semi; 树状数组 &amp&semi;&amp&semi; 中位数&rpar;

    http://www.51nod.com/contest/problem.html#!problemId=1685 这是这次BSG白山极客挑战赛的E题. 这题可以二分答案t. 关键在于,对于一个t,如 ...

  3. HDU 5700 区间交 线段树暴力

    枚举左端点,然后在线段树内,更新所有左边界小于当前点的区间的右端点,然后查线段树二分查第k大就好 #include <cstdio> #include <cstring> #i ...

  4. 51nod 第K大区间2&lpar;二分&plus;树状数组&rpar;

    题目链接: 第K大区间2 基准时间限制:1.5 秒 空间限制:131072 KB 分值: 160 定义一个长度为奇数的区间的值为其所包含的的元素的中位数.中位数_百度百科 现给出n个数,求将所有长度为 ...

  5. 【BZOJ3110】【整体二分&plus;树状数组区间修改&sol;线段树】K大数查询

    Description 有N个位置,M个操作.操作有两种,每次操作如果是1 a b c的形式表示在第a个位置到第b个位置,每个位置加入一个数c 如果是2 a b c形式,表示询问从第a个位置到第b个位 ...

  6. 【bzoj3110】&lbrack;Zjoi2013&rsqb;K大数查询 整体二分&plus;树状数组区间修改

    题目描述 有N个位置,M个操作.操作有两种,每次操作如果是1 a b c的形式表示在第a个位置到第b个位置,每个位置加入一个数c.如果是2 a b c形式,表示询问从第a个位置到第b个位置,第C大的数 ...

  7. &lbrack;bzoj1901&rsqb;&lbrack;zoj2112&rsqb;&lbrack;Dynamic Rankings&rsqb; &lpar;整体二分&plus;树状数组 or 动态开点线段树 or 主席树&rpar;

    Dynamic Rankings Time Limit: 10 Seconds      Memory Limit: 32768 KB The Company Dynamic Rankings has ...

  8. 【BZOJ-2527】Meteors 整体二分 &plus; 树状数组

    2527: [Poi2011]Meteors Time Limit: 60 Sec  Memory Limit: 128 MBSubmit: 831  Solved: 306[Submit][Stat ...

  9. BZOJ&lowbar;3110&lowbar;&lbrack;Zjoi2013&rsqb;K大数查询&lowbar;整体二分&plus;树状数组

    BZOJ_3110_[Zjoi2013]K大数查询_整体二分+树状数组 Description 有N个位置,M个操作.操作有两种,每次操作如果是1 a b c的形式表示在第a个位置到第b个位置,每个位 ...

随机推荐

  1. JS中的 new 操作符简单理解

    首先上一一个简单的 new 操作符实例 var Person = function(name){ this.name = name; this.say = function(){ return &qu ...

  2. 为什么要关闭360云盘:新来的美工嫌我们logo太丑,所以就决定关闭了。这个理由怎么样

    新来的美工嫌我们logo太丑,所以就决定关闭了.这个理由怎么样曾经拥有的不要忘记:不能得到的更要珍惜:属于自己的不要放弃:已经失去的留作回忆.我刚来~~~嘿嘿~~ 久经考验的,忠诚的国际宅男主义战士, ...

  3. 连接管理VMware SphereESXi

    连接管理VMware SphereESXi 1. 准备 下载VMware-viclient-all-5.5.0-1993072,并按照提示安装 2. 使用VMware Sphere Client链接事 ...

  4. MySql Connector&sol;Net Mysql like 搜索中文的问题(c&num;和asp&period;net连接mysql)

    Connector/Net 6.9.8 选择.net/mono即可,不需要安装. 将对应版本的MySql.Data.dll复制到bin目录下即可使用 http://dev.mysql.com/down ...

  5. CentOS 6&period;5上安装Python 2&period;7&period;9

    CentOS 6.6自带的是Python 2.6.6,而编译llvm需要Python 2.7以上. checking for python... /usr/bin/python checking fo ...

  6. iOS7 UIKit动力学-碰撞特性UICollisionBehavior 下

    上文讲到了为window加一个边界.实现碰撞的效果,接下来我们将提到一个托付方法: - (void)collisionBehavior:(UICollisionBehavior *)behavior ...

  7. (纪念第一道完全自己想的树DP)CodeForces 219D Choosing Capital for Treeland

    Choosing Capital for Treeland time limit per test 3 seconds memory limit per test 256 megabytes inpu ...

  8. yii学习笔记--快速创建一个项目

    下载yii框架 下载地址:http://www.yiiframework.com/ 中文网站:http://www.yiichina.com/ 解压文件

  9. Maven项目强制更新,解决Failed to read artifact descriptor for xxx&period;jar问题

    导入的maven项目pom.xml现红叉 分析原因:在maven本地仓库中找不到相应的jar包. 解决方案:让maven强制更新依赖. 项目右击菜单,Maven -> Update Projec ...

  10. es6学习笔记一:迭代器和for-of循环

    我们如何遍历一个数组呢?在20年前,我们是这样遍历一个数组的: var myArr = []; for (var i = 0; i < arr.length; i++) { console.lo ...