`
Simone_chou
  • 浏览: 197118 次
  • 性别: Icon_minigender_2
  • 来自: 广州
社区版块
存档分类
最新评论

Mayor's posters(线段树 + 离散化 + 区间更新)

    博客分类:
  • POJ
 
阅读更多
Mayor's posters
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 40494   Accepted: 11780

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

 

      题意:

      给出 T,代表有 T 组数据。每组数据给出 n(1 ~ 10000)块板,每块板都有一个左右边界 (1 ~ 10 ^ 7),新放进去的板会覆盖掉原来的板,求出最后能看见的板能有多少种。

 

      思路:

      线段树。区间更新。维护线段的覆盖颜色,这里有个问题就是这里的覆盖的编号指的是线段的编号,而不是点的编号,比如样例

      3

      1 10

      1 4

      5 10    答案是2

      3

      1 10

      1 4

      6 10   答案是3

      这样的话,离散化之后就会带来问题,离散化后同样都是 1 2 3 4,得出来的答案永远都是2,故答案错误。

      所以当把左右边界放到一个数组之后,比如 1  4 6 10,将相邻两个数相差 1 的添加多一个中间值,处理后就是1,2,4,5,6,10,之后再做离散化求覆盖情况即可。

 

      AC:

#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

const int MAX = 10005;

int cl[MAX], cr[MAX];
int num[MAX * 100], ans;

int color[MAX * 100];
int col_temp[MAX], sum;

void push_down(int node, int l, int r) {
        if (color[node]) {
                int mid = (r + l) >> 1;
                color[node << 1] = color[node];
                color[node << 1 | 1] = color[node];
                color[node] = 0;
        }
}

void build (int node, int l, int r) {
        if (r == l) {
                color[node] = 0;
        } else {
                int mid = (r + l) >> 1;
                build (node << 1, l, mid);
                build (node << 1 | 1, mid + 1, r);
                color[node] = 0;
        }
}

void update(int node, int l, int r, int al, int ar, int col) {
        if (ar < l || al > r) return;
        if (al <= l && ar >= r) {
                color[node] = col;
                return;
        }
        if (r == l) return;

        push_down(node, l, r);
        int mid = (r + l) >> 1;
        update(node << 1, l, mid, al, ar, col);
        update(node << 1 | 1, mid + 1, r, al, ar, col);
}

void query(int node, int l, int r) {
        if (color[node]) {
                if (!col_temp[ color[node] ]) {
                        ++sum;
                        col_temp[ color[node] ] = 1;
                }
                return;
        }
        if (r == l) return;

        int mid = (l + r) >> 1;
        query(node << 1, l, mid);
        query(node << 1 | 1, mid + 1, r);
}

int main() {
        int t;
        scanf("%d", &t);

        while (t--) {
                int n;
                scanf("%d", &n);

                ans = 0;
                for (int i = 0; i < n; ++i) {
                        scanf("%d%d", &cl[i], &cr[i]);
                        num[ans++] = cl[i];
                        num[ans++] = cr[i];
                }

                sort(num, num + ans);

                int a = ans;
                for (int i = 1; i < ans; ++i) {
                        if (num[i] - num[i - 1] > 1) {
                                num[a++] = num[i - 1] + 1;
                        }
                }
                ans = a;

                sort(num, num + ans);
                ans = unique(num, num + ans) - num;

                build(1, 1, ans);
                for (int i = 0; i < n; ++i) {
                        int l = lower_bound(num, num + ans, cl[i]) - num;
                        int r = lower_bound(num, num + ans, cr[i]) - num;
                        update(1, 1, ans, l + 1, r + 1, i + 1);
                }

                memset(col_temp, 0, sizeof(col_temp));
                sum = 0;
                query(1, 1, ans);

                printf("%d\n", sum);
        }

        return 0;
}

 

 

 

分享到:
评论

相关推荐

    POJ2528-Mayor's posters【区间映射压缩(离散化)+线段树】

    POJ2528-Mayor's posters 【区间映射压缩(离散化)+线段树】 解题报告+AC代码 http://hi.csdn.net/!s/83XZJU ========&gt; 我的所有POJ解题报告链接: http://blog.csdn.net/lyy289065406/article/details/6642573

    线段树汇总

    - Mayor's posters(2761):典型的线段树染色问题,需要注意离散化方法和细节处理。 通过以上知识点,我们可以看到线段树在处理动态区间问题中的强大能力。学习和熟练掌握线段树的构建、查询和更新操作,将极大地...

    POJ2528-Mayor's posters 测试数据

    【标题】"POJ2528-Mayor's posters"是一个经典的编程竞赛题目,源自2003年Alberta Collegiate Programming Contest。该比赛每年都会吸引众多编程爱好者参加,旨在锻炼参赛者的算法设计和实现能力。题目“市长的海报...

    poj-2528 Mayor's posters 测试数据及答案

    【标题】"poj-2528 Mayor's posters 测试数据及答案"涉及的是一个编程竞赛中的问题,这个问题来源于POJ(Programming Online Judge)平台,编号为2528。POJ是一个在线的编程练习系统,它提供了一系列的问题供程序员...

    mayor's poster

    用线段树计算贴海报不被覆盖的海报数量, 首先需要对整个海报进行离散化处理

    cPP.zip_二部图

    线段树是一种数据结构,可以支持区间查询和更新操作,其时间复杂度为O(logn)。而树状数组,又称斐波那契堆,同样可以高效地处理区间查询和单点修改问题,它的核心思想是维护一个数组,并通过前缀和快速计算区间和。 ...

    Data_on_Prefectural_Party_Secretary_and_Mayor_of_P._R._China,_20

    Data_on_Prefectural_Party_Secretary_and_Mayor_of_P._R._China,_2000-2010(02)

    Mayor & ESI-2019纽约夜生活经济报告(英文)-2019.12-80页.rar

    《纽约夜生活经济报告》是由Mayor与ESI联合发布的2019年度行业报告,这份80页的报告深入探讨了纽约市夜生活的经济影响力、发展趋势以及相关行业面临的挑战。以下是对报告中关键知识点的详细解读: 1. **夜生活经济...

    bradley-tower-static:基于HTML的静态静态版本的Mayor's Dashboard(Bradley Tower)

    这些都是完全通过Google表格集成构建的,并通过对这些电子表格进行的任何更改而动态更新。 可视化:交互式图表,图形,地图,可深入探究关键政策/问题领域。 这些图表通常是使用D3或CartoDB手动构建的,尽管有些...

    persona-mayor-csharp:尖锐的

    Persona Mayor 是一个与 C# 编程语言相关的项目,标题中的“尖锐的”可能指的是项目的先进性或高效性。这个项目可能包含了使用 C# 实现的一些高级特性和最佳实践,或者是针对特定问题领域的高性能解决方案。 在 C# ...

    numero-mayor-menor:程序,用于获取用Java键盘输入的列表的最大和最小数目(无需初始化变量)

    这个名为"numero-mayor-menor"的程序就是为了解决这个问题而设计的,它允许用户通过键盘输入一系列数字,并自动计算出这些数字中的最大值和最小值,而无需预先初始化变量。这种设计可以提高代码的效率和简洁性。 ...

    mayor0v.github.io

    mayor0v.github.io

    jason_wu_mayor

    【标题】"jason_wu_mayor" 可能是指一个项目或资源库,以设计师Jason Wu(吴季刚)的名字命名,可能是为了纪念他或者与他的设计工作有关。这个项目的具体细节没有在描述中给出,但从标签“CSS”我们可以推测,它可能...

    U3E4-Numero-menor-mayor

    标题“U3E4-Numero-menor-mayor”似乎是指一个编程练习或项目,它涉及到找出一组数字中的最小值和最大值。这个项目可能是针对初学者或中级Java程序员设计的,旨在提升他们处理数组、比较操作以及逻辑思维的能力。 ...

    numero-mayor-o-menor

    标题 "numero-mayor-o-menor" 暗示我们关注的是一个与比较数字大小相关的程序,可能是用于找出一组数字中的最大值或最小值。在这个Java项目中,我们可以期待学习到如何处理数组、循环以及条件判断等基本编程概念。 ...

    super-mayor:每隔几分钟检查一次芝加哥Open311服务器,并在提交或更新新服务请求时发出声音

    超级市长列出最近在芝加哥市311系统中创建,更新或关闭的服务请求。 它使用来自市民数据。 特征: 服务请求在创建/更新/关闭时出现在市长跳过新提交的请求并在更新/关闭请求时收集框时,观看(和收听)市长背景变化...

    hp4200官方 维修手册

    Las impresoras HP LaserJet 4200 el LaserJet 4300 series fueron ... La mayor difer- ncia está en el diseño de la tolva el toner. La de la HP4300 es más rande y carga 1050 gramos de

    mayor14:作者识别码

    授权人作者识别码使用: 贝叶斯冒名顶替者稀疏表示在 PAN14 中运行的说明训练三种方法bash 脚本/train_pan14.sh -i TRAINDIR -o MODELDIR贝叶斯测试bash 脚本/test_pan14_bayes.sh -i INPUTDIR -m MODELDIR -o ...

    CURSO FORTRAN 90.pdf

    Esta forma permite mayor flexibilidad en la escritura del código y elimina muchas de las restricciones que existían en versiones anteriores. Aquí se destacan algunas de las características más ...

    Android ProxyPatternDemo

    代理模式是一种设计模式,它是结构型模式的一种,其主要作用在于为其他对象提供一个替代品或代表,以便控制对这个对象的访问。在Android开发中,代理模式的应用非常广泛,尤其是在处理复杂的业务逻辑或者需要在原有...

Global site tag (gtag.js) - Google Analytics