BZOJ 1603 USACO 2008 Oct. 打谷机

Posted Driver_Lao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ 1603 USACO 2008 Oct. 打谷机相关的知识,希望对你有一定的参考价值。

【题解】

  水题。。

  保存连接方式,按顺序处理即可。

#include<cstdio>
#include<algorithm>
using namespace std;
int n,ans;
bool a[1010][1010];
inline int read(){
	int f=1,k=0; char c=getchar();
	while(c<\'0\'||c>\'9\')c==\'-\'&&(f=-1),c=getchar();
	while(\'0\'<=c&&c<=\'9\')k=k*10+c-\'0\',c=getchar();
	return k*f;
}
int main(){
	n=read();
	for(int i=1;i<n;i++){
		int x=read(),y=read();
		a[x][y]=read();
	}
	for(int i=2;i<=n;i++){
		ans+=a[i-1][i];
	}
	return printf("%d\\n",ans%2),0;
}

  

以上是关于BZOJ 1603 USACO 2008 Oct. 打谷机的主要内容,如果未能解决你的问题,请参考以下文章

bzoj1603 / P2913 [USACO08OCT]车轮旋转Wheel Rotation

bzoj1601Usaco2008 Oct灌水

[BZOJ1601][Usaco2008 Oct]灌水

bzoj1602[Usaco2008 Oct]牧场行走

bzoj1600:[Usaco2008 Oct]建造栅栏

bzoj1602[Usaco2008 Oct]牧场行走*