luogu 2982 [USACO10FEB]鎱笅鏉lowing down dfs搴?鏍戠姸鏁扮粍

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了luogu 2982 [USACO10FEB]鎱笅鏉lowing down dfs搴?鏍戠姸鏁扮粍相关的知识,希望对你有一定的参考价值。

鏍囩锛?a href='http://www.mamicode.com/so/1/namespace' title='namespace'>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
",query(st[p]));      
        update(st[p],1); 
        update(ed[p]+1,-1);        
    }
    // printf("%lld
",ans); 
    return 0; 
}

銆€銆€

以上是关于luogu 2982 [USACO10FEB]鎱笅鏉lowing down dfs搴?鏍戠姸鏁扮粍的主要内容,如果未能解决你的问题,请参考以下文章

Luogu P2982 [USACO10FEB]慢下来 Slowing down | dfs序线段树

洛谷 P2982 [USACO10FEB]慢下来Slowing down

洛谷P2982 [USACO10FEB]慢下来Slowing down

洛谷P2982 [USACO10FEB]慢下来Slowing down(线段树 DFS序 区间增减 单点查询)

luogu P2984 [USACO10FEB]给巧克力Chocolate Giving 题解

[luogu p1118] [USACO06FEB]数字三角形