Mayor's posters (线段树+离散化)
Mayor's posters
Description
The citizens of Bytetown, AB, could not stand that the candidates in the mayoral election campaign have been placing their electoral posters at all places at their whim. The city council has finally decided to build an electoral wall for placing the posters and introduce the following rules:
- 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
The first line of input contains a number c giving the number of cases that follow. The first line of data for a single case contains number 1 <= n <= 10000. The subsequent n lines describe the posters in the order in which they were placed. The i-th line among the n lines contains two integer numbers li and ri which are the number of the wall segment occupied by the left end and the right end of the i-th poster, respectively. We know that for each 1 <= i <= n, 1 <= li <= ri <= 10000000. After the i-th poster is placed, it entirely covers all wall segments numbered li, li+1 ,... , ri.
Output
For each input data set print the number of visible posters after all the posters are placed.
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 这是一道很经典的线段树离散化问题,题目中给出的区间[li,ri]的数据都很大,直接用线段树做的话至少需要10000000*4的空间,因此,我们首先要对数据进行离散化处理
首先,我们要弄清楚离散化的概念,我们根据题目样例进行分析,可以看到[1,4],[2,6],[8,10],[3,4],[7,10]这五个区间,我们将这10个数都拿出来排个序,创建序列a
1 2 3 4 4 6 7 8 10 10
接下来我们对序列a去下重
1 2 3 4 6 7 8 10
然后我们用他们的相对大小(例如:6在这个序列中是第5大,10在这个序列中是第8大)建立另一个序列b
1 2 3 4 5 6 7 8
最后我们用每个数对应的相对大小来替换原来的区间就变成了这样
[1,4],[2,5],[7,8],[3,4],[6,8]
我们用这个区间来计算一下最后能观察到的海报数的话会发现,结果仍然是4
我个人对离散化的理解就是用数字的相对大小来替换他的实际大小从而达到减小其值,却不破坏它的位置关系的目的
这道题我们利用这样的方法就能将li,ri这么大的数缩小到最大只有20000(因为最多有20000个点)
理解题意后我们直接看代码,至于线段树部分就是普通的区间修改而已
#pragma GCC optimize("Ofast")
#include <iostream>
#include <algorithm>
#include <set>
using namespace std;
#define endl '\n'
#define ll long long
struct node
{
int l, r, flag;
} tree[];
int base[], ls[];
set<int> s;
void tree_build(int i, int l, int r)
{
tree[i].l = l;
tree[i].r = r;
tree[i].flag = ;
if (l == r)
{
return;
}
int mid = (l + r) >> ;
tree_build(i << , l, mid);
tree_build(i << | , mid + , r);
}
void push_down(int i)
{
if (tree[i].flag)
{
tree[i << ].flag = tree[i].flag;
tree[i << | ].flag = tree[i].flag;
tree[i].flag = ;
}
}
void update(int i, int l, int r, int num)
{
if (tree[i].l >= l && tree[i].r <= r)
{
tree[i].flag = num;
return;
}
if (tree[i].r < l || tree[i].l > r)
{
return;
}
push_down(i);
if (tree[i << ].r >= l)
{
update(i << , l, r, num);
}
if (tree[i << | ].l <= r)
{
update(i << | , l, r, num);
}
}
void search(int i, int l, int r)
{
if (tree[i].flag)
{
s.insert(tree[i].flag);//利用set自动去重的性质来记录海报数量
return;
}
if (l == r)
{
return;
}
int mid = (l + r) >> ;
search(i << , l, mid);
search(i << | , mid + , r);
}
int main()
{
ios::sync_with_stdio();
cin.tie();
cout.tie();
int t;
cin >> t;
while (t--)
{
int n, x, y, pos = ;
cin >> n;
s.clear();
tree_build(, , );
for (int i = ; i <= n; ++i)
{
//这地方我们开两个数组,base用与计算每个数的相对位置,ls是离散化后的数组
cin >> x >> y;
base[pos] = x;
ls[pos++] = x;
base[pos] = y;
ls[pos++] = y;
}
//无论是sort还是unique还是lower_bound区间设定都是左闭右开的形式,品,你细细的品
sort(base + , base + pos);
int num = unique(base + , base + pos) - base;//对base排序并去重,必须排序后才能用unique
for (int i = ; i < pos; ++i)
{
ls[i] = lower_bound(base + , base + num, ls[i]) - base;
}
for (int i = ; i < pos; i += )
{
update(, ls[i - ], ls[i], i);
}
search(, , );
cout << s.size() << endl;
}
return ;
}
你以为这就完事了?其实这样离散化在这道题中会有一些bug,我们看这组数据[1,10],[1,3],[6,10],很明显答案是3
但是离散化之后为[1,4],[1,2],[3,4],答案变成了2
为解决这种问题,我们可以在更新线段树的时候将区间从[l,r]变成[l,r-1],就将区间转化成了[1,3],[1,1],[3,3]这样的树
但是当我们遇到这样的数据[1,3],[1,1],[2,2],[3,3],就会导致区间更新时出错,我们可以将初始数据的r都加上1,就排除了li和ri相等的情况,如果没有这种情况,离散化后的区间也都是一样的
其实这道题数据很弱,不管这样的情况也能过(逃
#pragma GCC optimize("Ofast")
#include <iostream>
#include <algorithm>
#include <set>
using namespace std;
#define endl '\n'
#define ll long long
struct node
{
int l, r, flag;
} tree[];
int base[], ls[];
set<int> s;
void tree_build(int i, int l, int r)
{
tree[i].l = l;
tree[i].r = r;
tree[i].flag = ;
if (l == r)
{
return;
}
int mid = (l + r) >> ;
tree_build(i << , l, mid);
tree_build(i << | , mid + , r);
}
void push_down(int i)
{
if (tree[i].flag)
{
tree[i << ].flag = tree[i].flag;
tree[i << | ].flag = tree[i].flag;
tree[i].flag = ;
}
}
void update(int i, int l, int r, int num)
{
if (tree[i].l >= l && tree[i].r <= r)
{
tree[i].flag = num;
return;
}
if (tree[i].r < l || tree[i].l > r)
{
return;
}
push_down(i);
if (tree[i << ].r >= l)
{
update(i << , l, r, num);
}
if (tree[i << | ].l <= r)
{
update(i << | , l, r, num);
}
}
void search(int i, int l, int r)
{
//cout << tree[i].flag << " " << tree[i].l << " " << tree[i].r << endl;
if (tree[i].flag)
{
//cout << tree[i].flag << " " << tree[i].l << " " << tree[i].r << endl;
s.insert(tree[i].flag);
return;
}
if (l == r)
{
return;
}
int mid = (l + r) >> ;
search(i << , l, mid);
search(i << | , mid + , r);
}
int main()
{
ios::sync_with_stdio();
cin.tie();
cout.tie();
int t;
cin >> t;
while (t--)
{
int n, x, y, pos = ;
cin >> n;
s.clear();
tree_build(, , );
for (int i = ; i <= n; ++i)
{
cin >> x >> y;
base[pos] = x;
ls[pos++] = x;
base[pos] = y + ;
ls[pos++] = y + ;
}
sort(base + , base + pos);
int num = unique(base + , base + pos) - base;
for (int i = ; i < pos; ++i)
{
ls[i] = lower_bound(base + , base + num, ls[i]) - base;
}
for (int i = ; i < pos; i += )
{
update(, ls[i - ], ls[i] - , i);
}
search(, , );
cout << s.size() << endl;
}
return ;
}
Mayor's posters (线段树+离散化)的更多相关文章
- POJ 2528 Mayor's posters(线段树+离散化)
Mayor's posters 转载自:http://blog.csdn.net/winddreams/article/details/38443761 [题目链接]Mayor's posters [ ...
- poj 2528 Mayor's posters 线段树+离散化技巧
poj 2528 Mayor's posters 题目链接: http://poj.org/problem?id=2528 思路: 线段树+离散化技巧(这里的离散化需要注意一下啊,题目数据弱看不出来) ...
- [poj2528] Mayor's posters (线段树+离散化)
线段树 + 离散化 Description The citizens of Bytetown, AB, could not stand that the candidates in the mayor ...
- Mayor's posters(线段树+离散化POJ2528)
Mayor's posters Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 51175 Accepted: 14820 Des ...
- POJ 2528 Mayor's posters (线段树+离散化)
Mayor's posters Time Limit: 1000MS Memory Limit: 65536K Total Submissions:75394 Accepted: 21747 ...
- poj 2528 Mayor's posters 线段树+离散化 || hihocode #1079 离散化
Mayor's posters Description The citizens of Bytetown, AB, could not stand that the candidates in the ...
- POJ.2528 Mayor's posters (线段树 区间更新 区间查询 离散化)
POJ.2528 Mayor's posters (线段树 区间更新 区间查询 离散化) 题意分析 贴海报,新的海报能覆盖在旧的海报上面,最后贴完了,求问能看见几张海报. 最多有10000张海报,海报 ...
- poj-----(2528)Mayor's posters(线段树区间更新及区间统计+离散化)
Mayor's posters Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 43507 Accepted: 12693 ...
- POJ2528:Mayor's posters(线段树区间更新+离散化)
Description The citizens of Bytetown, AB, could not stand that the candidates in the mayoral electio ...
随机推荐
- <QluOJ2018NewCode>计算几何(寄蒜几盒)
题目描述 现在有一个圆圈,圆圈上有若干个点,请判断能否在若干个点中选择三个点两两相连组成一个等边三角形? 这若干个点在圆圈上按顺时针顺序分布. 如果可以的话输出"Yes"(不含引号 ...
- Simple Robot Gym - 101102I (思维)
SaMer is building a simple robot that can move in the four directions: up (^), down (v), left (<) ...
- FreeSql取多表数据
该篇内容由个人博客点击跳转同步更新!转载请注明出处! 以文章随笔与分类为例. 表结构 部分字段如下,其他省略,为了展示一对多关联,一个分类下可以有多个文章.一个文章属于一个分类. blog_artic ...
- C++中 =default 和 =delete 使用
编译器默认为一个类生成的默认函数 默认构造函数 默认析构函数 默认拷贝构造函数 默认赋值函数 移动构造函数 移动拷贝函数 class DataOnly { public: DataOnly () // ...
- easyUI demo2
图片: 代码: jsp <%@ page language="java" import="java.util.*" pageE ...
- Visio日程安排图
黄日历: 怎么创建呢? 首先找到日程安排图表 然后找到日历 这就是日历的形状模块 拖动“日”日历形状进行创建 创建好的日历通过右键单击选择"配置"来修改日期 这是周日历 与日日历不 ...
- 什么?我往Redis写的数据怎么没了?
大概是因为int没有因为change方法而改变原值,所以就说它传过去的是自身的值,因而叫值传递:User对象经过change方法后,对象的数据变了,就认为是因为实参和形参指向的是同一片内存空间,内存空 ...
- 【合集】有标号的DAG图计数(合集)
[合集]有标号的DAG图计数(合集) orz 1tst [题解]有标号的DAG计数1 [题解]有标号的DAG计数2 [题解]有标号的DAG计数3 [题解]有标号的DAG计数4
- 20行Python代码爬取王者荣耀全英雄皮肤
引言王者荣耀大家都玩过吧,没玩过的也应该听说过,作为时下最火的手机MOBA游戏,咳咳,好像跑题了.我们今天的重点是爬取王者荣耀所有英雄的所有皮肤,而且仅仅使用20行Python代码即可完成. 准备工作 ...
- mongodb 更新嵌套数组的值
概要 本文主要讲述在 mongodb 中,怎么更新嵌套数组的值. 使用$更新数组 基本语法 { "<array>.$" : value } 可以用于:update, ...
