码迷,mamicode.com
首页 > 其他好文 > 详细

Mayor's posters(线段树+离散化)

时间:2019-03-01 22:17:40      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:cli   memset   name   first   size   opened   区间   fir   algorithm   

 

这道题最关键的点就在离散化吧。

假如有三张海报[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\n", ans);
    }
    return 0;
}
View Code

 

Mayor's posters(线段树+离散化)

标签:cli   memset   name   first   size   opened   区间   fir   algorithm   

原文地址:https://www.cnblogs.com/Mrzdtz220/p/10459041.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!