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

hdu5618 Jam's problem again

时间:2016-03-06 06:36:36      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:

想用动态开点的二维线段树水一下,然而TLE了。。。有人线段树套平衡树都过了。。。可能线段树套线段树再加动态开点常数确实大。。。

留着等刷完第三章习题后再搞树套树,和cdq分治一起搞,等学完cdq分治我一定会回来用正解过这题的,今天没过的代码先留着。

技术分享
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<algorithm>
#define REP(i,a,b) for(int i=a;i<=b;i++)
#define MS0(a) memset(a,0,sizeof(a))

using namespace std;

typedef long long ll;
//const int maxn=1000100;
const int INF=1e9+10;

const int N=100010;
int n;
struct Point
{
    int x,y,z;
    int id;
    int ans;
    friend bool operator<(Point A,Point B)
    {
        return A.z<B.z;
    }
};Point p[N];
struct Node
{
    int l,r;
    int lz,rz;
    int cnt;
    int lx,rx;
    int ly,ry;
};Node tr[N*8];int trn;
int s[N*8],trn2;
int rt;

bool cmp(Point A,Point B)
{
    return A.id<B.id;
}

int newnode(int l,int r,int lz,int rz)
{
    int k;
    if(trn2) k=s[trn2--];
    else k=++trn;
    tr[k]={l,r,lz,rz,0,-1,-1,-1,-1};
    return k;
}

void Init(int l,int r,int lz,int rz)
{
    trn=trn2=0;
    rt=newnode(l,r,lz,rz);
}

void Free(int &k)
{
    if(k==-1) return;
    Free(tr[k].lx);
    Free(tr[k].rx);
    Free(tr[k].ly);
    Free(tr[k].ry);
    s[++trn2]=k;
    k=-1;
}

void upy(int rt)
{
    tr[rt].cnt=0;
    if(~tr[rt].ly){
        tr[rt].cnt+=tr[tr[rt].ly].cnt;
        if(tr[tr[rt].ly].cnt==0) Free(tr[rt].ly);
    }
    if(~tr[rt].ry){
        tr[rt].cnt+=tr[tr[rt].ry].cnt;
        if(tr[tr[rt].ry].cnt==0) Free(tr[rt].ry);
    }
}

void updatey(int p,int c,int rt)
{
    int l=tr[rt].l,r=tr[rt].r;
    int lz=tr[rt].lz,rz=tr[rt].rz;
    if(lz==rz){
        tr[rt].cnt++;
        return;
    }
    int m=(lz+rz)>>1;
    if(p<=m){
        if(tr[rt].ly==-1) tr[rt].ly=newnode(l,r,lz,m);
        updatey(p,c,tr[rt].ly);
    }
    else{
        if(tr[rt].ry==-1) tr[rt].ry=newnode(l,r,m+1,rz);
        updatey(p,c,tr[rt].ry);
    }
    upy(rt);
}

int queryy(int L,int R,int &rt)
{
    if(tr[rt].cnt==0&&rt!=1){
        Free(rt);
        return 0;
    }
    int l=tr[rt].l,r=tr[rt].r;
    int lz=tr[rt].lz,rz=tr[rt].rz;
    if(L<=lz&&rz<=R) return tr[rt].cnt;
    int m=(lz+rz)>>1;
    int res=0;
    if(L<=m){
        if(~tr[rt].ly) res+=queryy(L,R,tr[rt].ly);
    }
    if(R>m){
        if(~tr[rt].ry) res+=queryy(L,R,tr[rt].ry);
    }
    return res;
}

void updatex(int x,int y,int c,int rt)
{
    //cout<<"x="<<x<<" y="<<y<<" c="<<c<<" rt="<<rt<<endl;
    int l=tr[rt].l,r=tr[rt].r;
    int lz=tr[rt].lz,rz=tr[rt].rz;
    //cout<<"x="<<x<<" y="<<y<<" c="<<c<<" l="<<l<<" r="<<r<<" lz="<<lz<<" rz="<<rz<<endl;
    updatey(y,c,rt);
    if(l==r) return;
    int m=(l+r)>>1;
    if(x<=m){
        if(tr[rt].lx==-1) tr[rt].lx=newnode(l,m,lz,rz);
        updatex(x,y,c,tr[rt].lx);
    }
    else{
        if(tr[rt].rx==-1) tr[rt].rx=newnode(m+1,r,lz,rz);
        updatex(x,y,c,tr[rt].rx);
    }
}

int queryx(int xL,int xR,int yL,int yR,int &rt)
{
    if(tr[rt].cnt==0&&rt!=1){
        Free(rt);
        return 0;
    }
    int l=tr[rt].l,r=tr[rt].r;
    int lz=tr[rt].lz,rz=tr[rt].rz;
    //cout<<"xL="<<xL<<" xR="<<xR<<" yL="<<yL<<" yR="<<yR<<" l="<<l<<" r="<<r<<" lz="<<lz<<" rz="<<rz<<endl;
    if(xL<=l&&r<=xR) return queryy(yL,yR,rt);
    int m=(l+r)>>1;
    int res=0;
    if(xL<=m){
        if(~tr[rt].lx) return res+=queryx(xL,xR,yL,yR,tr[rt].lx);
    }
    if(xR>m){
        if(~tr[rt].rx) return res+=queryx(xL,xR,yL,yR,tr[rt].rx);
    }
    return res;
}

int main()
{
    freopen("in.txt","r",stdin);
    int T;cin>>T;
    while(T--){
        scanf("%d",&n);
        REP(i,1,n) scanf("%d%d%d",&p[i].x,&p[i].y,&p[i].z),p[i].id=i;
        sort(p+1,p+n+1);
        Init(1,N,1,N);
        REP(i,1,n){
            //cout<<p[i].x<<" "<<p[i].y<<" "<<p[i].z<<endl;
            p[i].ans=queryx(1,p[i].x,1,p[i].y,rt);
            updatex(p[i].x,p[i].y,1,rt);
            //cout<<p[i].ans<<endl;
        }
        for(int i=n-1;i>=1;i--) if(p[i].x==p[i+1].x&&p[i].y==p[i+1].y&&p[i].z==p[i+1].z) p[i].ans=p[i+1].ans;
        sort(p+1,p+n+1,cmp);
        REP(i,1,n) printf("%d\n",p[i].ans);
    }
    return 0;
}
View Code

 

hdu5618 Jam's problem again

标签:

原文地址:http://www.cnblogs.com/--560/p/5246446.html

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