hdu3094 A tree game

Posted liguanlin1124

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu3094 A tree game相关的知识,希望对你有一定的参考价值。

题目描述

题解:

树上删边。

$SG[u]^=SG[son[u]]$

代码:

#include<cstdio>
#include<cstring>
const int N = 100050;
template<typename T>
inline void read(T&x)
{
    T f = 1,c = 0;char ch=getchar();
    while(ch<0||ch>9){if(ch==-)f=-1;ch=getchar();}
    while(ch>=0&&ch<=9){c=c*10+ch-0;ch=getchar();}
    x = f*c;
}
int T,n,hed[N],cnt;
struct EG
{
    int to,nxt;
}e[2*N];
void ae(int f,int t)
{
    e[++cnt].to = t;
    e[cnt].nxt = hed[f];
    hed[f] = cnt;
}
int dfs(int u,int f)
{
    int ret = 0;
    for(int to,j=hed[u];j;j=e[j].nxt)
        if((to=e[j].to)!=f)ret^=(dfs(to,u)+1);
    return ret;
}
int main()
{
    read(T);
    while(T--)
    {
        memset(hed,0,sizeof(hed));
        cnt=0;
        read(n);
        for(int f,t,i=1;i<n;i++)
        {
            read(f),read(t);
            ae(f,t),ae(t,f);
        }
        puts(dfs(1,0)?"Alice":"Bob");
    }
    return 0;
}

 

以上是关于hdu3094 A tree game的主要内容,如果未能解决你的问题,请参考以下文章

hdu 3094 A tree game

[HDU3094]A tree game

HDU 1846 Brave Game (博弈水题)

HDU1517 A Multiplication Game

HDU 2216 Game III(BFS)

[AGC017D]Game on Tree