Mayor's posters(线段树+离散化)
Posted mrzdtz220
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mayor's posters(线段树+离散化)相关的知识,希望对你有一定的参考价值。
这道题最关键的点就在离散化吧。
假如有三张海报[1, 10] [10, 13][15, 20] 仅仅三个区间就得占用到20了。
但是离散化后就可以是[1, 2] [2, 3] [4, 5] n到1e4 不重叠的话最大也只到2e4
那么就可以做了
离散化技巧需要好好消化
代码如下
#include <cstring> #include <cstring> #include <cstdio> #include <algorithm> #define lp p<<1 #define rp p<<1|1 using namespace std; const int N = 20000+5; int tree[N<<2]; int a[N], ans; bool vis[N]; pair<int,int> p[N]; inline void pushdown(int p) { if (tree[p]) { tree[lp] = tree[rp] = tree[p]; tree[p] = 0; } } void build(int p, int l, int r) { if (tree[p]) { if (!vis[tree[p]]) { vis[tree[p]] = 1; ans++; } return; } int mid = l + r >> 1; build(lp, l, mid); build(rp, mid + 1, r); } void change(int p, int l, int r, int x, int y, int z) { if (x <= l && y >= r) { tree[p] = z; return; } pushdown(p); int mid = l + r >> 1; if (x <= mid) change(lp, l, mid, x, y, z); if (y > mid) change(rp, mid + 1, r, x, y, z); } int main() { int T; scanf("%d", &T); while (T--) { int n; scanf("%d", &n); for (int i = 1; i <= 2 * n; i++) { scanf("%d", &p[i].first); p[i].second = i; } sort(p + 1, p + 2 * n + 1); int last = 0, cnt = 0; for (int i = 1; i <= 2 * n; i++) { if (p[i].first == last) { a[p[i].second] = cnt; } else { a[p[i].second] = ++cnt, last = p[i].first; } } memset(tree, 0, sizeof(tree)); for (int i = 1; i <= 2 * n; i += 2) { change(1, 1, cnt, a[i], a[i+1], (i + 1) / 2); } memset(vis, 0, sizeof(vis)); ans = 0; build(1, 1, cnt); printf("%d ", ans); } return 0; }
以上是关于Mayor's posters(线段树+离散化)的主要内容,如果未能解决你的问题,请参考以下文章
POJ 2528-Mayor's posters-线段树+离散化
POJ 2528 Mayor's posters(线段树+离散化)