比赛 2024暑假C班集训A 评测结果 AAAWAAAAWW
题目名称 轮子的旋转 最终得分 70
用户昵称 喵喵喵 运行时间 0.043 s
代码语言 C++ 内存使用 3.42 MiB
提交时间 2024-07-10 08:52:39
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
int g[1005][2];
int n,s,d,c;
int main()
{
	freopen("rotation.in","r",stdin);
	freopen("rotation.out","w",stdout);
	scanf("%d",&n);
	for(int i = 1;i < n;i++)
	{
		scanf("%d%d%d",&s,&d,&c);
		g[s][0] = d;
		g[s][1] = c;
	}
	s = 1;
	bool flag = 0;
	while(g[s][0] != 0)
	{
		if(g[s][1] = 1)
		{
			flag = !flag;
		}
		s = g[s][0];
	}
	if(flag) printf("1\n");
	else printf("0\n");
	return 0;
}