POJ 2528 Mayor's posters
Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u
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 题目大意:
大体是说有人要竞选需要投票什么的,不用理会,总之后面就是贴海报, 后面的能把前面的海报覆盖,海报每次贴不会到方格中间,
如果一个海报不是完全被贴上就算可以看到,问最后你能看到几张海报(英语渣,反正我是这么理解的) 输入
1 //T个样例
5 //下面5(n)张海报及其范围 1 <= n <= 10000
1 4 //海报的左右边界 1--10000000
2 6
8 10
3 4
7 10 输出
4 能看到4张海报 解题思路:
由于海报粘贴的方式,在外面的绝对不会被里面的遮住,所以倒着来覆盖海报比较方便
主要还是由于海报边界太大需要离散化,如果把海报的每个边界看成一个节点话最多需要的范围就成了20000 节点是80000
不过我不会离散化第一次看了课件,模仿着写的,不过听学长说貌似不算很好的离散化 或者完全不合格的离散化
我用的这种离散化还是要开一个100000000的一维数组 虽然开的下,这道题也能解决,不过学长说如果范围是几亿的话就没办法了
不过这道题还是能过的,新的离散化方法明天再搞吧 下面是代码
/*毕竟我是王宇浩*/
#include <iostream>
#include <cstdio>
#include <cstring>
#include <queue>
#include <cstdlib>
#include <cmath>
#include <cctype>
#define Max(a,b) ((a)>(b)?(a):(b))
#define ls rt<<1
#define rs rt<<1|1
using namespace std;
const int N = ;
int xx[N];//x[i]用来储存海报左右边,排列后节点的位置为i;
int post[N * ];//post[i]用来储存边i应该排列在第几个位置上面
struct Poster
{
int l, r;
}P[N];//P[i]来储存第i张海报的左右边 struct node
{
int l, r;
bool cover;
int Mid()
{
return (l + r) >> ;
} }a[N<<]; int cmp(const void *a, const void *b)
{
int *c, *d;
c = (int *)a;
d = (int *)b;
return *c - *d;
} void Build(int rt, int l, int r)
{
a[rt].l = l, a[rt].r = r, a[rt].cover = false; if(l == r) return ; Build(ls, l, a[rt].Mid());
Build(rs, a[rt].Mid()+, r);
}
void UP(int rt)
{
//如果ls和rs都被覆盖, 则此区域被覆盖
if(a[rt].l == a[rt].r) return;
if(a[ls].cover && a[rs].cover)
a[rt].cover = true;
}
bool Search(int rt, int l, int r)//如果找到此区间未被覆盖,覆盖并返回true, 否则返回false;
{
bool ans;
if(a[rt].cover) return false;
if(a[rt].l == l && a[rt].r == r) {
if(a[rt].cover) return false;
else {
a[rt].cover = true;
return true;
}
}
if(l > a[rt].Mid()) {
ans = Search(rs, l, r);
}
else if(r <= a[rt].Mid()) {
ans = Search(ls, l, r);
}
else {
bool ans1 = Search(ls, l, a[rt].Mid());
bool ans2 = Search(rs, a[rt].Mid() + , r);
ans = ans1 || ans2;
}
UP(rt);//每次放置海报之后就要向上更新
return ans;
} int main()
{
int T, n;
scanf("%d", &T);
while (T--) {
scanf("%d", &n);
int index = ;
for(int i = ; i < n; i++) {
scanf("%d %d", &P[i].l, &P[i].r);
xx[index++] = P[i].l;
xx[index++] = P[i].r;
}
qsort(xx, index, sizeof(xx[]), cmp);//对每个左右边的大小排序,确定其属于的节点位置
int index2 = ;
for(int i = ; i < index; i++) {//每个边的位置确定一下,相同值为一个节点,相邻节点也相邻,不相邻节点之间空一个节点
post[xx[i]] = index2;
if(i == index - ) break;//判断到最后一个,结束循环,因为每次循环保存的都是下个节点的状态,及时结束防止数组越界
if(xx[i + ] - xx[i] == ) index2++;
if(xx[i + ] - xx[i] > ) index2 += ;
}
Build(, , index2);//建立线段树
int ans = ;//保存答案
for(int i = n - ; i >= ; i--) {
if(Search(, post[P[i].l], post[P[i].r])) ans++;//每次贴一张海报,判断会不会被覆盖,不会则答案+1
}
printf("%d\n", ans);
}
}
/*
1
5
1 4
2 6
8 10
3 4
7 10 */
POJ 2528 Mayor's posters的更多相关文章
- poj 2528 Mayor's posters(线段树+离散化)
/* poj 2528 Mayor's posters 线段树 + 离散化 离散化的理解: 给你一系列的正整数, 例如 1, 4 , 100, 1000000000, 如果利用线段树求解的话,很明显 ...
- poj 2528 Mayor's posters 线段树+离散化技巧
poj 2528 Mayor's posters 题目链接: http://poj.org/problem?id=2528 思路: 线段树+离散化技巧(这里的离散化需要注意一下啊,题目数据弱看不出来) ...
- POJ - 2528 Mayor's posters(dfs+分治)
POJ - 2528 Mayor's posters 思路:分治思想. 代码: #include<iostream> #include<cstdio> #include< ...
- POJ.2528 Mayor's posters (线段树 区间更新 区间查询 离散化)
POJ.2528 Mayor's posters (线段树 区间更新 区间查询 离散化) 题意分析 贴海报,新的海报能覆盖在旧的海报上面,最后贴完了,求问能看见几张海报. 最多有10000张海报,海报 ...
- POJ 2528 Mayor's posters 【区间离散化+线段树区间更新&&查询变形】
任意门:http://poj.org/problem?id=2528 Mayor's posters Time Limit: 1000MS Memory Limit: 65536K Total S ...
- POJ 2528 Mayor's posters(线段树区间染色+离散化或倒序更新)
Mayor's posters Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 59239 Accepted: 17157 ...
- 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——————【线段树区间替换、找存在的不同区间】
Mayor's posters Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u Sub ...
- POJ 2528 Mayor's posters(线段树+离散化)
Mayor's posters 转载自:http://blog.csdn.net/winddreams/article/details/38443761 [题目链接]Mayor's posters [ ...
随机推荐
- zigbee学习之路(十一):看门狗
一.前言 今天,我们要通过实验学习和认识一下看门狗的使用,看门狗是为了防止防止程序跑飞的,通过不断的喂狗,使看门狗能持续监管程序的运行状态,当程序跑飞时,能及时把程序拽回来. 二.原理与分析 在CPU ...
- [TCPIP] DNS Note
TCPIP DNS 域名系统 DNS 是一个应用于TCP/IP应用程序的分布式数据库,它提供主机名字和IP地址之间的转换及有关电子邮件的选路信息. 对DNS的访问是通过一个地址解析器来完成的,在Un ...
- 新版macbook air OS X El Capitan 10.11安装WIN找不到驱动介质???
这个问题已经解决 首先进入Boot Camp6 以后 顶上会有一个操作 -下载windowns 驱动程序 保存在优盘里面.然后再分区选择ISO(中间和你前面做的一样)电脑重启进入WIN安装 到你们出现 ...
- MFC动态创建菜单
http://blog.csdn.net/csdnzhwk/article/details/47395639
- Mybatis架构学习
Mybatis架构学习 MyBatis 是支持定制化 SQL.存储过程以及高级映射的持久层框架.MyBatis 封装了几乎所有的 JDBC 代码和手动设置参数以及获取结果集.可以对配置和原生Map使用 ...
- InfoPackage的更新模式
声明:原创作品,转载时请注明文章来自SAP师太技术博客( 博/客/园www.cnblogs.com):www.cnblogs.com/jiangzhengjun,并以超链接形式标明文章原始出处,否则将 ...
- centos7 docker zookeeper
docker run --name=zookeepertmp -i -t centos7/jdk7 /bin/bash cd /home wget http://apache.fayea.com/zo ...
- 如何在自己的窗体(控件)中显示XAF的视图
Form form = new Form(); DevExpress.ExpressApp.View listView = Application.CreateListView(Application ...
- RealSense开发-搭建C#开发环境
一.前言 RealSense的开发环境主要包括如下几部分: 硬件:RealSense摄像头(此处以SR300为例)+搭载Intel酷睿6代处理器的PC机(其实4代处理器也能跑起来): 软件:Windo ...
- U盘修复
方法一: 1.点开始-运行-输入cmd-format f: /fs: FAT32 (这里f:是指U盘所在盘符) 2.打开控制面板-管理工具-计算机管理-磁盘管理-找到U盘的所在的盘符--点右键--删除 ...