hicocoder1079离散化+线段树

题目链接:http://hihocoder.com/problemset/problem/1079

题目大意:

  有一条数轴,先后对数轴上的一些区间着上不同的颜色,后着色的区间若跟先着色的区间有重合,则重合部分颜色将被后着色的区间颜色覆盖,求在一系列的区间着色操作之后,最终数轴上的颜色有几种。区间数目n<=10^5, 区间长度最大值L<=10^9.

这道题目乍看上去就是一道简单的线段树区间更新区间查询的问题,但仔细一看发现,区间长度最大值L可能达到10^9,若按照普通的线段树来做,内存根本开不下。

  这时候我们注意到:假设现在有两个区间要着色,并求最后颜色有几种,我们对区间[0, 100000000]和[2, 1000000001]着色其实与对区间[0, 2]和[1, 3]着色对我们的答案并没有任何影响,因为将区间[0, 100000000]和[2, 1000000001]改为[0, 2]和[1, 3]并没有改变区间端点之间的相对大小。

  所以,离散化要做的就是,先将所有的2*n个区间端点记录下来,并将每个端点值映射到另外一个值上,只要不改变其相对大小关系,若我们的映射值从0开始逐1增加,那么最后得到的所有映射值的最大值不会超过2*n个。这样映射以后,再用线段树来做,就不存在内存开不下的问题了。

  另外需要注意的是:这里的线段树区间是连续的,与区间离散的线段树最明显的不同是,前者左右儿子表示的区间为[l, m]、[m+1, r]这种形式而后者表示的区间为[l, m]、 [m, r]这种形式,前者的叶子节点表示的区间为[i, i]这种形式而后者的叶节点表示的区间为[i, i+1]这种形式。

我的代码:

 1 #include <iostream>
 2 #include <set>
 3 #include <map>
 4
 5 using namespace std;
 6
 7 #define MAXN 2*100005
 8
 9 int ll[MAXN/2], rr[MAXN/2];
10 set<int> st;
11 map<int, int> mp;
12
13 struct segNode
14 {
15     int left, right, id;
16     bool lazy;
17 };
18
19 struct segTree
20 {
21     segNode t[4*MAXN];
22     void build(int i, int l, int r)
23     {
24         t[i].left = l;
25         t[i].right = r;
26         t[i].lazy = false;
27         if(l+1<r)
28         {
29             int m = (l+r)/2;
30             build(2*i, l, m);
31             build(2*i+1, m, r);
32         }
33     }
34     void pushdown(int i)
35     {
36         t[i].lazy = false;
37         t[2*i].id = t[i].id;
38         t[2*i+1].id = t[i].id;
39         t[2*i].lazy = true;
40         t[2*i+1].lazy = true;
41     }
42     void update(int i, int l, int r, int v)
43     {
44         if(t[i].left+1<t[i].right&&t[i].lazy)  pushdown(i);
45         if(t[i].left==l&&t[i].right==r)
46         {
47             t[i].id = v;
48             t[i].lazy = true;
49         }
50         else
51         {
52             int m = (t[i].left+t[i].right)/2;
53             if(r<=m)    update(2*i, l, r, v);
54             else if(l>=m)   update(2*i+1, l, r, v);
55             else
56             {
57                 update(2*i, l, m, v);
58                 update(2*i+1, m, r, v);
59             }
60         }
61     }
62     void query(int i)
63     {
64         if(t[i].lazy) st.insert(t[i].id);
65         else if(t[i].left+1<t[i].right)
66         {
67             query(2*i);
68             query(2*i+1);
69         }
70     }
71 }tree;
72
73 int main()
74 {
75     int n, l;
76     while(cin>>n>>l)
77     {
78         st.clear();
79         mp.clear();
80         for(int i=0; i<n; ++i)
81         {
82             cin>>ll[i]>>rr[i];
83             st.insert(ll[i]);
84             st.insert(rr[i]);
85         }
86         int cnt = 0;
87         for(set<int>::iterator it=st.begin(); it!=st.end(); it++)   mp[*it] = cnt++;
88         st.clear();
89         tree.build(1, 0, cnt-1);
90         for(int i=0; i<n; ++i) tree.update(1, mp[ll[i]], mp[rr[i]], i);
91         tree.query(1);
92         cout<<st.size()<<endl;
93     }
94     return 0;
95 }
时间: 2024-10-05 20:46:12

hicocoder1079离散化+线段树的相关文章

poj 2528 Mayor&#39;s posters【离散化+线段树】

题目:poj 2528 Mayor's posters 题意:给一个长度非常长的墙上贴长度为ai的海报,由于有的会覆盖掉,求最后能看见的海报个数. 分析:题目和POJ2777 一模一样,方法也一样,只不过这个要离散化,其次要数组开大一点.至少2倍. 离散化的时候用了C++的 pair 类,还是比较好用的. 代码: #include <iostream> #include <algorithm> #include <utility> #include <cstrin

POJ 2299 离散化线段树

点击打开链接 Ultra-QuickSort Time Limit: 7000MS   Memory Limit: 65536K Total Submissions: 40827   Accepted: 14752 Description In this problem, you have to analyze a particular sorting algorithm. The algorithm processes a sequence of n distinct integers by

南阳理工 题目9:posters(离散化+线段树)

posters 时间限制:1000 ms  |  内存限制:65535 KB 难度:6 描述 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 deci

Mayor&#39;s posters(离散化线段树)

Mayor's posters Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 54067   Accepted: 15713 Description The citizens of Bytetown, AB, could not stand that the candidates in the mayoral election campaign have been placing their electoral post

POJ 2528 Mayor&#39;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

bnu36905 Nested Segments 离散化+线段树

bnu36905 Nested Segments 离散化+线段树区间更新 也可以用离散化+set(或双向链表) #include <cstdio> #include <ctime> #include <cstdlib> #include <cstring> #include <queue> #include <string> #include <set> #include <stack> #include &l

POJ 2528 Mayor&amp;#39;s posters 离散化+线段树

题目大意:给出一些海报和贴在墙上的区间.问这些海报依照顺序贴完之后,最后能后看到多少种海报. 思路:区间的范围太大,然而最多仅仅会有10000张海报,所以要离散化. 之后用线段树随便搞搞就能过. 关键是离散化的方法,这个题我时隔半年才A掉,之前一直就TTT,我还以为是线段树写挂了. 当我觉得我自己的水平这样的水线段树已经基本写不挂的时候又写了这个题,竟然还是T. 后来我对照别人的代码,才发现是我的离散化写渣了. 以下附AC代码(79ms),这个离散化写的比較优雅.时间也非常快,以后就这么写了.

POJ 2528 Mayor&#39;s posters (离散化 + 线段树)

强烈不推荐在POJ做这道题!!! 强烈不推荐在POJ做这道题!!! 强烈不推荐在POJ做这道题!!! 推荐去UVA 10587 或 SCU 2249 POJ的数据比较水且可能有错,一些本来错误的数据但可以水过,以及在UVA与SCU同样题目都能AC的程序在POJ莫名WA了. 建议写完程序后跑下这组数据: 1 3 1 10 1 3 6 10 好多题解的答案是2,但答案明显是3,这是因为每个数字其实表示的是一个单位长度,并非一个点 , 这就会导致像这样的区间: 1-10 1-4 5-10 1-10 1

【POJ】2528 Mayor&#39;s posters ——离散化+线段树

Mayor's posters Time Limit: 1000MS    Memory Limit: 65536K 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