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

bzoj 1103

时间:2018-02-07 19:30:52      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:zoj   names   smm   algorithm   gpo   void   div   line   tin   

先处理出整棵树的DFS序,用树状数组维护 DFS序的差分序列的前缀和。

初始在每个城市的入点处+1,出点处-1,如果有土路被改造成公路,

就把它通向城市的入点处-1,出点处+1。

/**/
#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>

using namespace std;
const int mxn=600000;

int in[mxn],out[mxn],cnt=0;
int n,m;

//邻接表
struct edge {
    int v,nxt;
} e[mxn];

int hd[mxn],mct=0;

void add_edge(int u,int v) {
    e[++mct].v=v;
    e[mct].nxt=hd[u];
    hd[u]=mct;
    return;
}
//树状数组

int t[mxn];
inline int lowbit(int x) {
    return x&-x;
}

void add(int p,int v) {
    while(p<=cnt) {
        t[p]+=v;
        p+=lowbit(p);
    }
}

int smm(int x) {
    int res=0;
    while(x) {
        res+=t[x];
        x-=lowbit(x);
    }
    return res;
}
//DFS序

void DFS(int u,int fa) {
    in[u]=++cnt;
    for(int i=hd[u]; i; i=e[i].nxt) {
        int v=e[i].v;
        if(v==fa)continue;
        DFS(v,u);
    }
    out[u]=++cnt;
}

int main() {
    scanf("%d",&n);
    int i,j;
    int u,v;
    for(i=1; i<n; i++) {
        scanf("%d%d",&u,&v);
        add_edge(u,v);
        add_edge(v,u);
    }
    DFS(1,0);
    for(i=2; i<=n; i++) {
        add(in[i],1);
        add(out[i],-1);
    }
    scanf("%d",&m);
    char ch[5];
    for(i=1; i<=m+n-1; i++) {
        scanf("%s",ch);
        if(ch[0]==A) {
            scanf("%d%d",&u,&v);
            add(in[v],-1);
            add(out[v],1);
        } else {
            scanf("%d",&u);
            printf("%d\n",smm(in[u]));
        }
    }
    return 0;
}

 

bzoj 1103

标签:zoj   names   smm   algorithm   gpo   void   div   line   tin   

原文地址:https://www.cnblogs.com/shandongs1/p/8427679.html

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