poj 2528 Mayor's posters 线段树+离散化 || hihocode #1079 离散化
Description
- Every candidate can place exactly one poster on the wall.
- All posters are of the same height equal to the height of the wall; the width of a poster can be any integer number of bytes (byte is the unit of length in Bytetown).
- The wall is divided into segments and the width of each segment is one byte.
- Each poster must completely cover a contiguous number of wall segments.
They have built a wall 10000000 bytes long (such that there is enough place for all candidates). When the electoral campaign was restarted, the candidates were placing their posters on the wall and their posters differed widely in width. Moreover, the candidates started placing their posters on wall segments already occupied by other posters. Everyone in Bytetown was curious whose posters will be visible (entirely or in part) on the last day before elections.
Your task is to find the number of visible posters when all the posters are placed given the information about posters' size, their place and order of placement on the electoral wall.
Input
Output
The picture below illustrates the case of the sample input.
Sample Input
1
5
1 4
2 6
8 10
3 4
7 10
Sample Output
4
Source
#include<iostream>
#include<cstdio>
#include<cmath>
#include<string>
#include<queue>
#include<algorithm>
#include<stack>
#include<cstring>
#include<vector>
#include<list>
#include<set>
#include<map>
using namespace std;
#define ll long long
#define mod 1000000007
#define pi (4*atan(1.0))
const int N=1e5+,M=1e6+,inf=1e9+;
int sum[N*],lazy[N*];
set<int>s;
set<int>::iterator it;
void pushdown(int pos,int len)
{
int lson=pos*;
int rson=pos*+;
if(lazy[pos])
{
lazy[lson]=lazy[pos];
lazy[rson]=lazy[pos];
sum[lson]=lazy[pos];
sum[rson]=lazy[pos];
lazy[pos]=;
}
}
void buildtree(int l,int r,int pos)
{
lazy[pos]=;
sum[pos]=;
int mid=(l+r)>>;
if(l==r)
return;
buildtree(l,mid,pos*);
buildtree(mid+,r,pos*+);
}
void query(int l,int r,int pos)
{
pushdown(pos,r-l+);
if(l==r)
{
if(sum[pos])
s.insert(sum[pos]);
return;
}
int mid=(l+r)>>;
query(l,mid,pos*);
query(mid+,r,pos*+);
}
void update(int L,int R,int c,int l,int r,int pos)
{
if(L<=l&&r<=R)
{
lazy[pos]=c;
sum[pos]=c;
return;
}
pushdown(pos,(r-l+));
ll mid=(l+r)>>;
if(L<=mid)update(L,R,c,l,mid,pos*);
if(mid<R)update(L,R,c,mid+,r,pos*+);
}
struct is
{
int l,r;
}a[N<<];
int num[N<<];
int main()
{
int x,y,z,i,t;
int T;
scanf("%d",&T);
while(T--)
{
buildtree(,,);
s.clear();
int ji=;
scanf("%d",&x);
for(i=;i<x;i++)
{
scanf("%d%d",&a[i].l,&a[i].r);
num[ji++]=a[i].l;
num[ji++]=a[i].r;
}
sort(num,num+ji);
ji=;
for(i=;i<*x;i++)
if(num[i]!=num[ji-])
num[ji++]=num[i];
for(i=;i<x;i++)
{
int l=lower_bound(num,num+ji,a[i].l)-num;
int r=lower_bound(num,num+ji,a[i].r)-num;
update(l+,r+,i+,,,);
}
query(,,);
printf("%d\n",s.size());
}
return ;
}
#1079 : 离散化
描述
小Hi和小Ho在回国之后,重新过起了朝7晚5的学生生活,当然了,他们还是在一直学习着各种算法~
这天小Hi和小Ho所在的学校举办社团文化节,各大社团都在宣传栏上贴起了海报,但是贴来贴去,有些海报就会被其他社团的海报所遮挡住。看到这个场景,小Hi便产生了这样的一个疑问——最后到底能有几张海报还能被看见呢?
于是小Ho肩负起了解决这个问题的责任:因为宣传栏和海报的高度都是一样的,所以宣传栏可以被视作长度为L的一段区间,且有N张海报按照顺序依次贴在了宣传栏上,其中第i张海报贴住的范围可以用一段区间[a_i, b_i]表示,其中a_i, b_i均为属于[0, L]的整数,而一张海报能被看到当且仅当存在长度大于0的一部分没有被后来贴的海报所遮挡住。那么问题就来了:究竟有几张海报能被看到呢?
输入
每个测试点(输入文件)有且仅有一组测试数据。
每组测试数据的第1行为两个整数N和L,分别表示总共贴上的海报数量和宣传栏的宽度。
每组测试数据的第2-N+1行,按照贴上去的先后顺序,每行描述一张海报,其中第i+1行为两个整数a_i, b_i,表示第i张海报所贴的区间为[a_i, b_i]。
对于100%的数据,满足N<=10^5,L<=10^9,0<=a_i<b_i<=L。
输出
对于每组测试数据,输出一个整数Ans,表示总共有多少张海报能被看到。
- 样例输入
-
5 10
4 10
0 2
1 6
5 9
3 4 - 样例输出
-
5
#include<iostream>
#include<cstdio>
#include<cmath>
#include<string>
#include<queue>
#include<algorithm>
#include<stack>
#include<cstring>
#include<vector>
#include<list>
#include<set>
#include<map>
using namespace std;
#define ll long long
#define mod 1000000007
#define pi (4*atan(1.0))
const int N=1e5+,M=1e6+,inf=1e9+;
int sum[M*],lazy[M*];
set<int>s;
void pushdown(int pos,int len)
{
int lson=pos*;
int rson=pos*+;
if(lazy[pos])
{
lazy[lson]=lazy[pos];
lazy[rson]=lazy[pos];
sum[lson]=lazy[pos];
sum[rson]=lazy[pos];
lazy[pos]=;
}
}
void buildtree(int l,int r,int pos)
{
lazy[pos]=;
sum[pos]=;
int mid=(l+r)>>;
if(l==r)
return;
buildtree(l,mid,pos*);
buildtree(mid+,r,pos*+);
}
void query(int l,int r,int pos)
{
pushdown(pos,r-l+);
if(l==r)
{
if(sum[pos])
s.insert(sum[pos]);
return;
}
int mid=(l+r)>>;
query(l,mid,pos*);
query(mid+,r,pos*+);
}
void update(int L,int R,int c,int l,int r,int pos)
{
pushdown(pos,(r-l+));
if(L<=l&&r<=R)
{
lazy[pos]=c;
sum[pos]=c;
return;
}
int mid=(l+r)>>;
if(L<=mid)update(L,R,c,l,mid,pos*);
if(mid<R)update(L,R,c,mid+,r,pos*+);
}
struct is
{
int l,r;
}a[M*];
int num[M*];
int lisan[M*];
int main()
{
int x,y,z,i,t;
while(~scanf("%d%d",&x,&y))
{
s.clear();
int ji=;
for(i=;i<x;i++)
{
scanf("%d%d",&a[i].l,&a[i].r);
num[ji++]=a[i].l;
num[ji++]=a[i].r;
}
sort(num,num+ji);
ji=;
for(i=;i<*x;i++)
if(num[i]!=num[i-])
num[ji++]=num[i];
int gg=;
for(i=;i<ji;i++)
{
lisan[gg++]=num[i];
lisan[gg++]=num[i];
}
buildtree(,gg+,);
for(i=;i<x;i++)
{
int l=lower_bound(lisan,lisan+gg,a[i].l)-lisan;
int r=lower_bound(lisan,lisan+gg,a[i].r)-lisan;
update(l+,r+,i+,,gg+,);
}
query(,gg+,);
printf("%d\n",s.size());
}
return ;
}
poj 2528 Mayor's posters 线段树+离散化 || hihocode #1079 离散化的更多相关文章
- POJ.2528 Mayor's posters (线段树 区间更新 区间查询 离散化)
POJ.2528 Mayor's posters (线段树 区间更新 区间查询 离散化) 题意分析 贴海报,新的海报能覆盖在旧的海报上面,最后贴完了,求问能看见几张海报. 最多有10000张海报,海报 ...
- poj 2528 Mayor's posters 线段树+离散化技巧
poj 2528 Mayor's posters 题目链接: http://poj.org/problem?id=2528 思路: 线段树+离散化技巧(这里的离散化需要注意一下啊,题目数据弱看不出来) ...
- POJ 2528 Mayor's posters(线段树+离散化)
Mayor's posters 转载自:http://blog.csdn.net/winddreams/article/details/38443761 [题目链接]Mayor's posters [ ...
- POJ 2528 Mayor's posters (线段树区间更新+离散化)
题目链接:http://poj.org/problem?id=2528 给你n块木板,每块木板有起始和终点,按顺序放置,问最终能看到几块木板. 很明显的线段树区间更新问题,每次放置木板就更新区间里的值 ...
- POJ 2528 Mayor's posters (线段树+离散化)
Mayor's posters Time Limit: 1000MS Memory Limit: 65536K Total Submissions:75394 Accepted: 21747 ...
- POJ 2528 Mayor’s posters (线段树段替换 && 离散化)
题意 : 在墙上贴海报, n(n<=10000)个人依次贴海报,给出每张海报所贴的范围li,ri(1<=li<=ri<=10000000).求出最后还能看见多少张海报. 分析 ...
- poj 2528 Mayor's posters 线段树区间更新
Mayor's posters Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://poj.org/problem?id=2528 Descript ...
- poj 2528 Mayor's posters(线段树)
题目:http://poj.org/problem?id=2528 题意:有一面墙,被等分为1QW份,一份的宽度为一个单位宽度.现在往墙上贴N张海报,每张海报的宽度是任意的, 但是必定是单位宽度的整数 ...
- POJ 2528 Mayor's posters (线段树)
题目链接:http://poj.org/problem?id=2528 题目大意:有一个很上的面板, 往上面贴海报, 问最后最多有多少个海报没有被完全覆盖 解题思路:将贴海报倒着想, 对于每一张海报只 ...
随机推荐
- Linux上安装rz和sz命令
简介 lrzsz 官网入口:http://freecode.com/projects/lrzsz/ lrzsz是一个unix通信套件提供的X,Y,和ZModem文件传输协议 windows 需要向ce ...
- 你知道军装照H5浏览了多少次吗? 10亿
7月29日,由人民日报客户端推出的<快看呐!这是我的军装照>(以下简称<军装照>)H5页面,由它所引发的全民晒“军装照”现象级事件,据统计,截至8月18日,<军装照> ...
- html5游戏开发--"动静"结合(二)-用地图块拼成大地图 & 初探lufylegend
一.前言 本次教程将向大家讲解如何用HTML5将小地图块拼成大地图,以及如何用现有的高级html5游戏开发库件lufylegend.js开发游戏. 首先让我们来了解了解如何用html5实现动画,毕竟“ ...
- java通过url抓取网页数据
在很多行业中,要对行业数据进行分类汇总,及时分析行业数据,对于公司未来的发展,有很好的参照和横向对比.所以,在实际工作,我们可能要遇到数据采集这个概念,数据采集的最终目的就是要获得数据,提取有用的数据 ...
- sgu 100 A+B 解题报告及测试数据
100.A+B time limit per test: 0.25 sec. memory limit per test: 65536 KB 题解:上手题,不解释. 直接上代码: #include & ...
- 使用LinQ进行增删改查
数据库访问技术: ADO.net EF框架 LinQ LinQ是一种高集成化的数据库访问技术,他将数据库中的表映射成程序中的类 数据库的表名变成类名 数据库的列名变成字段名/属性名 所有的操作都是通过 ...
- Eclipse 导入Maven 项目报错
新建Maven项目时出错:org.apache.maven.archiver.MavenArchiver.getManifest 新建Maven项目时出错:org.apache.maven.arc ...
- 数据库中的B树和B+树
B树与B+树 数据库中建立索引能加快数据的存取,但是当索引变得很大时,可能导致内存装不下.这时就需要使用多级索引来实现.而B树和B+树是实现多级索引的一种数据结构. B树 B树是多叉树,其树中每个节点 ...
- 【python】win10中python3.5.2输入pip出现Fatal error in launcher: Unable to create process using '"'
系统:windows 10 python版本:3.5.2 出现的错误如下: C:\Users\zhuxy>pip list Fatal error in launcher: Unable to ...
- iOS跳转到Touch ID设置界面
1.首先去info.plist 设置: 2.代码 NSURL *url = [NSURL URLWithString:@"App-Prefs:root=TOUCHID_PASSCODE&qu ...