http://acm.hdu.edu.cn/showproblem.php?pid=5963
朋友Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Problem Description B君在围观一群男生和一群女生玩游戏,具体来说游戏是这样的:
Input 包含至多5组测试数据。 Output 对于每组数据的每一个询问操作,输出一行“Boys win!”或者“Girls win!”。
Sample Input 2 2 3 1 2 0 0 1 1 2 1 1 0 2 4 11 1 2 1 2 3 1 3 4 0 0 1 0 2 0 3 0 4 1 2 1 0 0 1 0 2 0 3 1 3 4 1 0 3 0 4
Sample Output Boys win! Girls win! Girls win! Boys win! Girls win! Boys win! Boys win! Girls win! Girls win! Boys win! Girls win! |
不用管最优策略,只用管“次优策略”
问题可以看成:翻转偶数次时男孩赢,奇数次时女孩赢
找规律的神题
通过找规律可以发现,当与根结点相连的边权值和为奇数时需要翻转奇数次,偶数时需要翻转偶数次
不与根相连的边中,要翻转成0,如果它原来是1要翻转奇数次,他的父亲要翻转同样次数保证上面的边权值不变
反之,他的父亲也要翻转同样次数保证上面的边权值不变
意味着不是与根相连的边不管如何翻转,翻转次数为偶数,所以只用考虑翻转与根相连的边
乱搞一下即可
#include<cstdio>
using namespace std;
int read()
{
int ret=0;
char ch=getchar();
while(ch<'0'||ch>'9') ch=getchar();
while(ch>='0'&&ch<='9')
ret=(ret<<1)+(ret<<3)+ch-'0',ch=getchar();
return ret;
}
int n,m,cnt;
const int N=1e6+5;
int he[N],to[N],nxt[N],w[N],s[N],fw[N],dep[N];
inline void add(int u,int v,int k)
{
to[++cnt]=v;
nxt[cnt]=he[u];
w[cnt]=k;
he[u]=cnt;
}
void dfs(int fa,int u)
{
dep[u]=dep[fa]+1;
s[u]=fw[u];
for(int e=he[u];e;e=nxt[e])
{
int v=to[e];
if(v!=fa) s[u]+=(fw[v]=w[e]),dfs(u,v);
}
}
int main()
{
int T=read();
while(T--)
{
n=read(),m=read();
cnt=0;
for(int i=1;i<=n;i++)
he[i]=s[i]=fw[i]=0;
for(int i=1;i<n;i++)
{
int u=read(),v=read(),k=read();
add(u,v,k),add(v,u,k);
}
dfs(0,1);
while(m--)
{
int t=read();
if(t==0)
{
int x=read();
if(s[x]&1) printf("Girls win!\n");
else printf("Boys win!\n");
} else
{
int x=read(),y=read(),z=read();
if(dep[x]>dep[y])
s[x]-=fw[x],s[y]-=fw[x],fw[x]=z;
else s[x]-=fw[y],s[y]-=fw[y],fw[y]=z;
s[x]+=z,s[y]+=z;
}
}
}
return 0;
}