码迷,mamicode.com
首页 > 编程语言 > 详细

luogu 2982 [USACO10FEB]慢下来Slowing down dfs序+树状数组

时间:2019-09-28 14:31:27      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:namespace   put   def   for   using   wing   return   class   div   

刷水~

Code: 

#include <bits/stdc++.h>  
#define N 100004 
#define setIO(s) freopen(s".in","r",stdin) 
using namespace std;  
int n,edges,tim; 
int hd[N],to[N<<1],nex[N<<1],st[N],ed[N],C[N]; 
void add(int u,int v) 
{
    nex[++edges]=hd[u],hd[u]=edges,to[edges]=v; 
}  
int lowbit(int t) 
{
    return t&(-t); 
} 
void update(int x,int d) 
{ 
    for(;x<N;x+=lowbit(x)) C[x]+=d; 
} 
int query(int x) 
{
    int tmp=0; 
    for(;x>0;x-=lowbit(x)) tmp+=C[x]; 
    return tmp; 
}
void dfs(int u,int ff) 
{ 
    st[u]=++tim;    
    for(int i=hd[u];i;i=nex[i]) 
    {
        int v=to[i]; 
        if(v!=ff) dfs(v,u); 
    } 
    ed[u]=tim;  
}
int main() 
{  
    int i,j; 
    //setIO("input");  
    scanf("%d",&n);  
    for(i=1;i<n;++i) 
    {
        int u,v; 
        scanf("%d%d",&u,&v),add(u,v),add(v,u); 
    } 
    dfs(1,0);        
    for(i=1;i<=n;++i) 
    {  
        int p; 
        scanf("%d",&p);       
        printf("%d\n",query(st[p]));      
        update(st[p],1); 
        update(ed[p]+1,-1);        
    }
    // printf("%lld\n",ans); 
    return 0; 
}

  

luogu 2982 [USACO10FEB]慢下来Slowing down dfs序+树状数组

标签:namespace   put   def   for   using   wing   return   class   div   

原文地址:https://www.cnblogs.com/guangheli/p/11602827.html

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