codeforces Beta Round #19 D. Point (线段树 + set)

题目大意:

对平面上的点进行操作。

add x y 在 (x,y )上加一个点。

remove x y 移除 (x,y)上的点。

find x y 求出在(x,y)右上角离他最近的点,优先级是靠左,靠下。

思路分析:

find 操作 比较麻烦。

要保证x大的同时还要确保x最小,而且该x上还要有点。

这样要找大的时候要小的,就是在线段树上选择性的进入左子树还是右子树。

所以核心就是,用set维护叶子节点。

然后查找的时候去叶子节点找,如果这个叶子节点有蛮子的 x y  就输出,否则回溯去另外一个子树。

#include <cstdio>
#include <iostream>
#include <cstring>
#include <algorithm>
#include <set>
#define lson num<<1,s,mid
#define rson num<<1|1,mid+1,e
#define maxn 400005

using namespace std;

set <int> cq[maxn];
int cnt[maxn<<2];
int mmax[maxn<<2];

struct node
{
    char type[10];
    int x,y;
} save[maxn];
int x[maxn<<1];

void Insert(int num,int s,int e,int pos,int val,bool flg)
{
    if(s==e)
    {
        if(flg)
        {
            cnt[num]++;
            cq[s].insert(val);
            mmax[num]=max(mmax[num],*(--cq[s].end()));
        }
        else
        {
            cnt[num]--;
            cq[s].erase(val);
            if(!cq[s].empty())mmax[num]=max(mmax[num],*(--cq[s].end()));
            else mmax[num]=0;
        }
        return;
    }
    int mid=(s+e)>>1;
    if(pos<=mid)Insert(lson,pos,val,flg);
    else Insert(rson,pos,val,flg);
    cnt[num]=cnt[num<<1]+cnt[num<<1|1];
    mmax[num]=max(mmax[num<<1],mmax[num<<1|1]);
}
int ansx,ansy;
bool query(int num,int s,int e,int l,int r,int pos,int val)
{
    int mid=(s+e)>>1;
    if(l<=s && r>=e)
    {
        if(s==e)
        {
            set<int>::iterator it = cq[s].upper_bound(val);
            if(it==cq[s].end())
            {
                return false;
            }
            else {
                ansx=s;
                ansy=*it;
                return true;
            }
        }
        else {
            if(mmax[num<<1]>val)
            {
                if(query(lson,l,r,pos,val))return true;
            }
            if(mmax[num<<1|1]>val)
            {
                if(query(rson,l,r,pos,val))return true;
            }
            return false;
        }
    }
    if(r<=mid)
    {
        if(query(lson,l,r,pos,val))return true;
    }
    else if(l>mid)
    {
        if(query(rson,l,r,pos,val))return true;
    }
    else
    {
        if(query(lson,l,mid,pos,val))return true;
        if(query(rson,mid+1,r,pos,val))return true;
    }
    return false;
}
int main()
{
    int n;
    memset(cnt,0,sizeof cnt);
    memset(mmax,0,sizeof mmax);

    scanf("%d",&n);
    int top=1;
    for(int i=1; i<=n; i++)
    {
        scanf("%s%d%d",save[i].type,&save[i].x,&save[i].y);
        x[top++]=save[i].x;
        x[top++]=save[i].y;
    }
    sort(x+1,x+top);
    int m = unique(x+1,x+top)-x;
    for(int i=1; i<=n; i++)
    {
        if(save[i].type[0]=='a')
        {
            int l=lower_bound(x+1,x+m,save[i].x)-x;
            Insert(1,1,m,l,save[i].y,1);
        }
        else if(save[i].type[0]=='r')
        {
            int l=lower_bound(x+1,x+m,save[i].x)-x;
            Insert(1,1,m,l,save[i].y,0);
        }
        else
        {
            int l=upper_bound(x+1,x+m,save[i].x)-x;
            if(query(1,1,m,l,m,l,save[i].y))printf("%d %d\n",x[ansx],ansy);
            else printf("-1\n");
        }
    }
    return 0;
}

codeforces Beta Round #19 D. Point (线段树 + set)

时间: 2025-01-09 08:27:11

codeforces Beta Round #19 D. Point (线段树 + set)的相关文章

Codeforces Beta Round #19 D. Points

题意: 给定一个平面, add(x,y), 增加一个点(x,y),保证以前不存在; delete(x,y), 删除一个点(x,y),保证存在你; query(x,y), 询问严格大于(x,y)的点,输出其中最小的一个,x为第一关键字,y为第二关键字. 思路: A 数据范围为2*10^5, 每个值的范围为10^9, 按照(x,y)离散化, 按照x建立(m=不同(x,y)对的个数)区间为1……m的线段树, 在每个叶子结点上来存储当前信息是否存在,每个结点上记录当前表示区间有没有值存在和最大的y是多少

Codeforces Beta Round #10 B. Cinema Cashier (树状数组)

题目大意: n波人去k*k的电影院看电影. 要尽量往中间坐,往前坐. 直接枚举,贪心,能坐就坐,坐在离中心近期的地方. #include <cstdio> #include <iostream> #include <cstring> #include <algorithm> #define maxn 1000005 #define lowbit(x) (x&(-x)) using namespace std; struct BIT { int sum

Codeforces Beta Round #12 D. Ball (线段树)

题目大意: n个女性中,如果有一个女性的三维比这个女性的三维都大,这个女性就要自杀.问要自杀多少个. 思路分析: 先按照第一维排序. 然后离散化第二维,用第二维的下标建树,树上的值是第三维,更新的时候取最大值. 注意是按照第一维度从大到小进入线段树. 而且还要严格递增. 所以处理第一维度比较大小的时候要分开处理,要把相同的先判断,再更新入树. 那么如何判断这个女性是否自杀. 首先,你知道第一维度是从大到小的,所以先进树了的节点的第一维度一定更大. 再次,我们考虑第二维度,我们去树上第二维度下标大

Codeforces Beta Round #91 (Div. 1 Only) E. Lucky Array

E. Lucky Array Petya loves lucky numbers. Everybody knows that lucky numbers are positive integers whose decimal representation contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467are not. Petya has an arra

Codeforces Beta Round #6 (Div. 2 Only)

Codeforces Beta Round #6 (Div. 2 Only) A 水题 1 #include<bits/stdc++.h> 2 using namespace std; 3 #define lson l,mid,rt<<1 4 #define rson mid+1,r,rt<<1|1 5 #define sqr(x) ((x)*(x)) 6 #define maxn 1000010 7 typedef long long ll; 8 /*#ifndef

Codeforces Beta Round #12 (Div 2 Only)

Codeforces Beta Round #12 (Div 2 Only) http://codeforces.com/contest/12 A 水题 1 #include<bits/stdc++.h> 2 using namespace std; 3 #define lson l,mid,rt<<1 4 #define rson mid+1,r,rt<<1|1 5 #define sqr(x) ((x)*(x)) 6 #define maxn 1000010 7 t

Codeforces Beta Round #35 (Div. 2)

Codeforces Beta Round #35 (Div. 2) http://codeforces.com/contest/35 A 这场的输入输出是到文件中的,不是标准的输入输出...没注意看,RE了好久... 1 #include<bits/stdc++.h> 2 using namespace std; 3 #define lson l,mid,rt<<1 4 #define rson mid+1,r,rt<<1|1 5 #define sqr(x) ((x

Codeforces Beta Round #75 (Div. 2 Only)

Codeforces Beta Round #75 (Div. 2 Only) http://codeforces.com/contest/92 A 1 #include<iostream> 2 using namespace std; 3 #define lson l,mid,rt<<1 4 #define rson mid+1,r,rt<<1|1 5 #define sqr(x) ((x)*(x)) 6 #define maxn 100005 7 typedef l

Codeforces Beta Round #14 (Div. 2)

Codeforces Beta Round #14 (Div. 2) http://codeforces.com/contest/14 A 找最大最小的行列值即可 1 #include<bits/stdc++.h> 2 using namespace std; 3 #define lson l,mid,rt<<1 4 #define rson mid+1,r,rt<<1|1 5 #define sqr(x) ((x)*(x)) 6 #define maxn 500005