程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> CF 19D Points(線段樹)

CF 19D Points(線段樹)

編輯:C++入門知識

貌似是CLJ的題吧。。。
就是有好多點,可以增加和刪除
然後查詢(x,y),表示橫縱坐標都大於當前點,而且X盡量小,同時保證Y盡量小
將橫坐標離散化,用set維護每一個X的所有的Y,增加和刪除都可以解決
然後線段樹維護一個區間最值,表示區間最大的Y。然後查詢大於當前X的最大值大於Y的最靠左的X
然後在之前的set中進行二分
[cpp]
#include <iostream>  
#include <cstdio>  
#include <algorithm>  
#include <cstring>  
#include <cmath>  
#include <set>  
#define lowbit(x) ((x)&(-(x)))  
#define lson (step<<1)  
#define rson (step<<1|1)  
using namespace std; 
const int N = 200005; 
struct Query{ 
    int k,x,y; 
    void init(){ 
        char str[10]; 
        scanf("%s%d%d",str,&x,&y); 
        if(str[0]=='a') k=0; 
        else if(str[0]=='f') k=2; 
        else k=1; 
    } 
}ask[N]; 
struct Seg_tree{ 
    int left,right,mx; 
}L[N<<2]; 
int m,q,X[N]; 
set<int>s[N]; 
void bulid(int step,int l,int r){ 
    L[step].left=l; 
    L[step].right=r; 
    L[step].mx=-1; 
    if(l==r) return ; 
    int m=(l+r)>>1; 
    bulid(lson,l,m); 
    bulid(rson,m+1,r); 

inline void push_up(int step){ 
    L[step].mx=max(L[lson].mx,L[rson].mx); 

void update(int step,int pos){ 
    if(L[step].left==L[step].right){ 
        L[step].mx=((int)s[pos].size()==0)?-1:(*(--s[pos].end())); 
        return ; 
    } 
    int m=(L[step].left+L[step].right)>>1; 
    if(pos<=m) update(lson,pos); 
    else update(rson,pos); 
    push_up(step); 

int query(int step,int l,int r,int y){ 
    if(l>r) return -1; 
    if(L[step].mx<=y) return -1; 
    if(L[step].left==L[step].right) return L[step].left; 
    int m=(L[step].left+L[step].right)>>1; 
    if(r<=m) return query(lson,l,r,y); 
    else if(l>m) return query(rson,l,r,y); 
    else{ 
        int t=query(lson,l,m,y); 
        if(t>=0) return t; 
        return query(rson,m+1,r,y);  
    } 

int main(){ 
    scanf("%d",&q); 
    for(int i=0;i<q;i++){ 
        ask[i].init();     
        X[i]=ask[i].x; 
    } 
    sort(X,X+q); 
    m=unique(X,X+q)-X; 
    bulid(1,1,m); 
    for(int i=0;i<q;i++){ 
        int k=ask[i].k,x=lower_bound(X,X+m,ask[i].x)-X+1,y=ask[i].y; 
        if(k==0){ 
            s[x].insert(y); 
            update(1,x); 
        } 
        else if(k==1){ 
            s[x].erase(s[x].find(y)); 
            update(1,x); 
        } 
        else{ 
            int pos=query(1,x+1,m,y); 
            if(pos==-1) printf("-1\n"); 
            else{ 
                printf("%d %d\n",X[pos-1],*s[pos].upper_bound(y)); 
            } 
        } 
    } 
    return 0; 

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <set>
#define lowbit(x) ((x)&(-(x)))
#define lson (step<<1)
#define rson (step<<1|1)
using namespace std;
const int N = 200005;
struct Query{
    int k,x,y;
    void init(){
        char str[10];
        scanf("%s%d%d",str,&x,&y);
        if(str[0]=='a') k=0;
        else if(str[0]=='f') k=2;
        else k=1;
    }
}ask[N];
struct Seg_tree{
    int left,right,mx;
}L[N<<2];
int m,q,X[N];
set<int>s[N];
void bulid(int step,int l,int r){
    L[step].left=l;
    L[step].right=r;
    L[step].mx=-1;
    if(l==r) return ;
    int m=(l+r)>>1;
    bulid(lson,l,m);
    bulid(rson,m+1,r);
}
inline void push_up(int step){
    L[step].mx=max(L[lson].mx,L[rson].mx);
}
void update(int step,int pos){
    if(L[step].left==L[step].right){
        L[step].mx=((int)s[pos].size()==0)?-1:(*(--s[pos].end()));
        return ;
    }
    int m=(L[step].left+L[step].right)>>1;
    if(pos<=m) update(lson,pos);
    else update(rson,pos);
    push_up(step);
}
int query(int step,int l,int r,int y){
    if(l>r) return -1;
    if(L[step].mx<=y) return -1;
    if(L[step].left==L[step].right) return L[step].left;
    int m=(L[step].left+L[step].right)>>1;
    if(r<=m) return query(lson,l,r,y);
    else if(l>m) return query(rson,l,r,y);
    else{
        int t=query(lson,l,m,y);
        if(t>=0) return t;
        return query(rson,m+1,r,y);
    }
}
int main(){
    scanf("%d",&q);
    for(int i=0;i<q;i++){
        ask[i].init();   
        X[i]=ask[i].x;
    }
    sort(X,X+q);
    m=unique(X,X+q)-X;
    bulid(1,1,m);
    for(int i=0;i<q;i++){
        int k=ask[i].k,x=lower_bound(X,X+m,ask[i].x)-X+1,y=ask[i].y;
        if(k==0){
            s[x].insert(y);
            update(1,x);
        }
        else if(k==1){
            s[x].erase(s[x].find(y));
            update(1,x);
        }
        else{
            int pos=query(1,x+1,m,y);
            if(pos==-1) printf("-1\n");
            else{
                printf("%d %d\n",X[pos-1],*s[pos].upper_bound(y));
            }
        }
    }
    return 0;
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved