SDIBT 3237 Boring Counting( 划分树+二分枚举 )
http://acm.sdibt.edu.cn/JudgeOnline/problem.php?id=3237
Problem H:Boring Counting
Time Limit: 3 Sec Memory Limit: 128 MB Submit: 8 Solved: 4 [Submit][Status][Discuss]
Description
In this problem you are given a number sequence P consisting of N integer and Pi is the ith element in the sequence. Now you task is to answer a list of queries, for each query, please tell us among [L, R], how many Pi is not less than A and not greater than B( L<= i <= R). In other words, your task is to count the number of Pi (L <= i <= R, A <= Pi <= B).
Input
In the first line there is an integer T (1 < T <= 50), indicates the number of test cases. For each case, the first line contains two numbers N and M (1 <= N, M <= 50000), the size of sequence P, the number of queries. The second line contains N numbers Pi(1 <= Pi <= 10^9), the number sequence P. Then there are M lines, each line contains four number L, R, A, B(1 <= L, R <= n, 1 <= A, B <= 10^9)
Output
For each case, at first output a line ‘Case #c:’, c is the case number start from 1. Then for each query output a line contains the answer.
Sample Input
1
13 5
6 9 5 2 3 6 8 7 3 2 5 1 4
1 13 1 10
1 13 3 6
3 6 3 6
2 8 2 8
1 9 1 9
Sample Output
Case #1:
13
7
3
6
9
HINT
Source
【题解】:
题目大意:求[L,R]区间内的pi在满足[A<=pi<=B]的个数
一开始想得是:直接用线段树记录区间的最大最小值,当最大最小值满足[A<=pi<=B]时就加上整个区间的长度,可是这样做会超时,因为不满足这个条件的情况太多了,基本上不满足的话每次都要遍历到最底层,所以TLE在所难免。
后面觉得还是划分树靠谱,不过比赛的时候也没时间写了,划分树是求区间的第K大值,我们要转换一下,就是A和B在区间的分别是第几大,然后用后者减掉前者就是要求的解,那么拿A来说明一下,A在区间中到底是第几大呢,刚说过划分树是求区间的第K大数是谁的,而我们要求的是知道这个数是谁要求他在区间是第几大,有点绕口哈,这里,我们用到二分枚举,枚举区间第K大的数,然后与A进行比较,如果大于等于A,继续向下枚举,直到等于A的最后一个A为止,对于B同理:
时间复杂度,划分树的时间复杂度为O(n*log(n)) 二分枚举为O(logn) 整体时间复杂度为O(n*log(n)*log(n))
【code】:
/**
Judge Status:Accepted Memory:13260 KB
Time:2500 ms Language:C++
Code Lenght:2824 B Author:cj
*/ #include<iostream>
#include<stdio.h>
#include<string.h>
#include<algorithm> #define N 50050
using namespace std; int sorted[N]; //排序完的数组
int toleft[][N]; //toleft[i][j]表示第i层从1到k有多少个数分入左边
int tree[][N]; //表示每层每个位置的值
int n; void building(int l,int r,int dep)
{
if(l==r) return;
int mid = (l+r)>>;
int temp = sorted[mid];
int i,sum=mid-l+; //表示等于中间值而且被分入左边的个数
for(i=l;i<=r;i++)
{
if(tree[dep][i]<temp) sum--;
}
int leftpos = l;
int rightpos = mid+;
for(i=l;i<=r;i++)
{
if(tree[dep][i]<temp) //比中间的数小,分入左边
{
tree[dep+][leftpos++]=tree[dep][i];
}
else if(tree[dep][i]==temp&&sum>) //等于中间的数值,分入左边,直到sum==0后分到右边
{
tree[dep+][leftpos++]=tree[dep][i];
sum--;
}
else //右边
{
tree[dep+][rightpos++]=tree[dep][i];
}
toleft[dep][i] = toleft[dep][l-] + leftpos - l; //从1到i放左边的个数
}
building(l,mid,dep+);
building(mid+,r,dep+);
} //查询区间第k大的数,[L,R]是大区间,[l,r]是要查询的小区间
int query(int L,int R,int l,int r,int dep,int k)
{
if(l==r) return tree[dep][l];
int mid = (L+R)>>;
int cnt = toleft[dep][r] - toleft[dep][l-]; //[l,r]中位于左边的个数
if(cnt>=k)
{
int newl = L + toleft[dep][l-] - toleft[dep][L-]; //L+要查询的区间前被放在左边的个数
int newr = newl + cnt - ; //左端点加上查询区间会被放在左边的个数
return query(L,mid,newl,newr,dep+,k);
}
else
{
int newr = r + (toleft[dep][R] - toleft[dep][r]);
int newl = newr - (r-l-cnt);
return query(mid+,R,newl,newr,dep+,k-cnt);
}
} int bilibili(int L,int R,int l,int r,int a) //二分枚举
{
int ans=-;
while(l<=r)
{
int mid = (l+r)>>;
int res = query(,n,L,R,,mid);
if(res>=a) //直到找到最左边的那个等于a的结果
{
r = mid - ;
ans = mid;
}
else
{
l = mid + ;
}
}
return ans;
} int bulobulo(int L,int R,int l,int r,int b)
{
int ans=;
while(l<=r)
{
int mid = (l+r)>>;
int res = query(,n,L,R,,mid);
if(res>b) //直到找到最后边的大于b的结果
{
r = mid - ;
ans = mid;
}
else
{
l = mid + ;
}
}
if(!ans) return r;
return ans-;
} int main()
{
int t,cas = ;
scanf("%d",&t);
while(t--)
{
int m;
scanf("%d%d",&n,&m);
int i;
for(i=;i<=n;i++)
{
scanf("%d",&tree[][i]);
sorted[i] = tree[][i];
}
sort(sorted+,sorted++n);
building(,n,);
int l,r,a,b;
printf("Case #%d:\n",cas++);
while(m--)
{
scanf("%d%d%d%d",&l,&r,&a,&b);
int x = ;
int y = r-l+;
int cnt1 = bilibili(l,r,x,y,a);
int cnt2 = bulobulo(l,r,x,y,b);
if(cnt1==-)
{
printf("0\n");
continue;
}
printf("%d\n",cnt2-cnt1+);
}
}
return ;
}
SDIBT 3237 Boring Counting( 划分树+二分枚举 )的更多相关文章
- sdut 2610:Boring Counting(第四届山东省省赛原题,划分树 + 二分)
Boring Counting Time Limit: 3000ms Memory limit: 65536K 有疑问?点这里^_^ 题目描述 In this problem you a ...
- HDU-4417 Super Mario,划分树+二分!
Super Mario 这个题也做了一天,思路是很清晰,不过二分那里写残了,然后又是无限RE.. 题意:就是查询区间不大于k的数的个数. 思路:裸划分树+二分答案.将区间长度作为二分范围.这个是重点. ...
- 13年山东省赛 Boring Counting(离线树状数组or主席树+二分or划分树+二分)
转载请注明出处: http://www.cnblogs.com/fraud/ ——by fraud 2224: Boring Counting Time Limit: 3 Sec ...
- 山东第四届省赛: Boring Counting 线段树
http://acm.sdibt.edu.cn/JudgeOnline/problem.php?id=3237 Problem H:Boring Counting Time Limit: 3 Sec ...
- hdu4417 划分树+二分
//Accepted 14796 KB 453 ms //划分树 //把查询的次数m打成n,也是醉了一晚上!!! //二分l--r区间第k大的数和h比较 #include <cstdio> ...
- HDU 4417 - Super Mario ( 划分树+二分 / 树状数组+离线处理+离散化)
题意:给一个数组,每次询问输出在区间[L,R]之间小于H的数字的个数. 此题可以使用划分树在线解决. 划分树可以快速查询区间第K小个数字.逆向思考,判断小于H的最大的一个数字是区间第几小数,即是答案. ...
- UPC 2224 / “浪潮杯”山东省第四届ACM大学生程序设计竞赛 1008 Boring Counting 主席树
Problem H:Boring Counting Time Limit : 6000/3000ms (Java/Other) Memory Limit : 65535/32768K (Java/ ...
- HDU 4417 划分树+二分
题意:有n个数.m个询问(l,r,k),问在区间[l,r] 有多少个数小于等于k. 划分树--查找区间第k大的数.... 利用划分树的性质.二分查找在区间[l,r]小于等于k的个数. 假设在区间第 i ...
- 【划分树+二分】HDU 4417 Super Mario
第一次 耍划分树.. . 模板是找第k小的 #include <stdio.h> #include <string.h> #include <stdlib.h> # ...
随机推荐
- SQL数据库设计三范式
关系型数据库将数据库设计需要遵循的一些规则叫做“范式”,最基本的三个范式(1NF.2NF.3NF)简称三范式.第一范式是满足第二范式的基础,而第一.二范式又是满足第三范式的基础. 第一范式 表中的字段 ...
- [Jquery] 获取地址栏参数的方法 备忘
<script type="text/javascript"> (function ($) { $.getUrlParam = function (name) { va ...
- 人生的抉择—aspx、ashx、asmx文件处理请求效率比较
人生总是面临着许多抉择许多困惑!作为一名"攻城师"或"程序猿"的我们,工作的时候更是如此.你曾经是否苦恼过在系统中使用哪种文件编写客户端请求最合适或最高效呢?a ...
- SQL 数据库基础语句
一.基础 1.说明:创建数据库CREATE DATABASE database-name 2.说明:删除数据库drop database dbname3.说明:备份sql server--- 创建备份 ...
- winform中文本框的一些案例
项目中经常看到在输入金额时,会加逗号,最近在复习正则表达式,就联系下,界面如下:
- 实例介绍Cocos2d-x物理引擎:使用关节
在游戏中我们可以通过关节约束两个物体的运动.我们通过一个距离关节实例,介绍一下如何在使用关节. 这个实例的运行后的场景如图所示,当场景启动后,玩家可以触摸点击屏幕,每次触摸时候,就会在触摸点和附近生成 ...
- PHP学习笔记 - 进阶篇(1)
PHP学习笔记 - 进阶篇(1) 数组 数组定义 $arr = array();表示创建一个空数组,并把创建的空数组赋值给变量$arr. 索引数组初始化 PHP有两种数组:索引数组.关联数组. 索引和 ...
- PHP学习笔记 - 入门篇(4)
PHP学习笔记 - 入门篇(4) 什么是运算符 PHP运算符一般分为算术运算符.赋值运算符.比较运算符.三元运算符.逻辑运算符.字符串连接运算符.错误控制运算符. PHP中的算术运算符 算术运算符主要 ...
- C# 3.0 特性之扩展方法
今天,我们来聊一聊C#的扩展方法. C# 3.0中为我们提供了一个新的特性—扩展方法.什么是扩展方法呢?我们看一下MSDN的注解: 扩展方法使您能够向现有类型“添加”方法,而无需创建新的派生类型.重新 ...
- Xml 学习二
使用PHPDOM模型操作XML XML的树状结构: s 1.xml文档 1.1.创建DOM树 //创建DOM树$M = new DOMDocument('1.0','utf-8'); 1.2.加载 ...