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

「JOISC2016」俄罗斯套娃

时间:2020-05-16 17:12:02      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:space   uniq   一个   区域   date   平面   数组   传送门   ref   

传送门

我们可以把这些套娃抽象成平面直角坐标系里的点(不妨设 R 为横坐标,H 为纵坐标)。

然后我们离线,把每个询问也抽象成这样的点。

然后我们从右下至左上依次加点。

那么我们每次的询问就是询问该点右下区域内的答案。

考虑怎么计算:类似网络流最小割的,我们不难发现,一个区域内点的答案就是这些点可以构成的最长的一条链,满足这条链的形态是从左上到右下的。

可以自己画图理解一下。

然后拿一个树状数组就可以轻松维护了。

参考代码:

#include <algorithm>
#include <cstdio>
using namespace std;

const int _ = 4e5 + 5;

int n, q, x, y, X[_], c[_], ans[_];
struct node { int x, y, id; } t[_];

void update(int x, int v) { while (x < _) c[x] = max(c[x], v), x += x & -x; }
int query(int x) { int res = 0; while (x) res = max(res, c[x]), x -= x & -x; return res; }

int cmp(node a, node b) { 
    if (a.x != b.x) return a.x > b.x;
    if (a.y != b.y) return a.y < b.y;
    return a.id < b.id;
}

int main() {
    scanf("%d %d", &n, &q);
    for (int i = 1; i <= n + q; ++i)
        scanf("%d %d", &x, &y), X[++X[0]] = y, t[i] = (node) { x, y, i > n ? i - n : 0 };
    sort(t + 1, t + n + q + 1, cmp);
    sort(X + 1, X + X[0] + 1);
    X[0] = unique(X + 1, X + X[0] + 1) - X - 1;
    for (int i = 1; i <= n + q; ++i)
        t[i].y = lower_bound(X + 1, X + X[0] + 1, t[i].y) - X;
    for (int i = 1; i <= n + q; ++i) {
        if (t[i].id) 
            ans[t[i].id] = query(t[i].y);
        else
            x = query(t[i].y), update(t[i].y, x + 1);
    }
    for (int i = 1; i <= q; ++i) printf("%d\n", ans[i]);
    return 0;
}

「JOISC2016」俄罗斯套娃

标签:space   uniq   一个   区域   date   平面   数组   传送门   ref   

原文地址:https://www.cnblogs.com/zsbzsb/p/12900816.html

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