博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mayor's posters POJ - 2528
阅读量:5248 次
发布时间:2019-06-14

本文共 4828 字,大约阅读时间需要 16 分钟。

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 l
i 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 <= l
i <= ri <= 10000000. After the i-th poster is placed, it entirely covers all wall segments numbered l
i, l
i+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

151 42 68 103 47 10

Sample Output

4 题解:报纸的范围太广了,所以需要离散化。这里离散有点小技巧,就是在两端点的差值大于1的地方再添加一个新的端点。
1 #pragma warning(disable:4996) 2 #include
3 #include
4 #include
5 #include
6 #include
7 using namespace std; 8 9 #define lson root<<110 #define rson root<<1|111 #define ll long long 12 13 const int maxn = 100005;14 15 int n, m, T, ans;16 int ls[maxn], rs[maxn], Hash[maxn];17 bool use[maxn];18 19 struct node { int l, r, color; } Tree[4*maxn];20 21 void Pushdown(int root) {22 Tree[lson].color = Tree[root].color;23 Tree[rson].color = Tree[root].color;24 Tree[root].color = -1;25 }26 27 void Build(int l, int r, int root) {28 Tree[root].l = l;29 Tree[root].r = r;30 Tree[root].color = -1;31 if (l == r) return;32 int mid = (l + r) >> 1;33 Build(l, mid, lson);34 Build(mid + 1, r, rson);35 }36 37 void Update(int L, int R, int l, int r, int root, int x) {38 if (l > R || r < L) return;39 if (L <= l && r <= R) {40 Tree[root].color = x;41 return;42 }43 if (Tree[root].color != -1) Pushdown(root);44 int mid = (l + r) >> 1;45 Update(L, R, l, mid, lson, x);46 Update(L, R, mid + 1, r, rson, x);47 }48 49 void Query(int l, int r, int root) {50 if (Tree[root].color != -1) {51 if (!use[Tree[root].color]) {52 ans++;53 use[Tree[root].color] = 1;54 }55 return;56 }57 if (l == r) return;58 59 int mid = (l + r) >> 1;60 Query(l, mid, lson);61 Query(mid + 1, r, rson);62 }63 64 int main()65 {66 scanf("%d", &T);67 while (T--) {68 memset(use, 0, sizeof(use));69 scanf("%d", &n);70 71 int tot = 1;72 for (int i = 1; i <= n; i++) {73 scanf("%d%d", ls + i, rs + i);74 Hash[tot++] = ls[i];75 Hash[tot++] = rs[i];76 }77 sort(Hash + 1, Hash + tot);78 79 int cnt = unique(Hash + 1, Hash + tot) - (Hash + 1);80 int len = cnt;81 for (int i = 2; i <= len; i++) if (Hash[i] - Hash[i - 1] > 1) Hash[++cnt] = Hash[i - 1] + 1;82 sort(Hash + 1, Hash + cnt + 1);83 84 Build(1, cnt, 1);85 for (int i = 1; i <= n; i++) {86 int x = lower_bound(Hash + 1, Hash + cnt + 1, ls[i]) - Hash;87 int y = lower_bound(Hash + 1, Hash + cnt + 1, rs[i]) - Hash;88 //cout << "????" << " " << x << " " << y << endl;89 Update(x, y, 1, cnt, 1, i);90 }91 92 ans = 0;93 Query(1, cnt, 1);94 printf("%d\n", ans);95 }96 return 0;97 }

 

 

转载于:https://www.cnblogs.com/zgglj-com/p/8847002.html

你可能感兴趣的文章
Springboot-日志框架
查看>>
P1192-台阶问题
查看>>
一、使用pip安装Python包
查看>>
spring与quartz整合
查看>>
Kattis之旅——Eight Queens
查看>>
3.PHP 教程_PHP 语法
查看>>
Duilib扩展《01》— 双击、右键消息扩展
查看>>
利用Fiddler拦截接口请求并篡改数据
查看>>
python习题:unittest参数化-数据从文件或excel中读取
查看>>
在工程中要加入新的错误弹出方法
查看>>
PS 滤镜— — sparkle 效果
查看>>
网站产品设计
查看>>
代理ARP
查看>>
go 学习笔记(4) ---项目结构
查看>>
java中静态代码块的用法 static用法详解
查看>>
Java线程面试题
查看>>
Paper Reading: Relation Networks for Object Detection
查看>>
day22 01 初识面向对象----简单的人狗大战小游戏
查看>>
mybatis源代码分析:深入了解mybatis延迟加载机制
查看>>
Flask三剑客
查看>>