码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ 1603 USACO 2008 Oct. 打谷机

时间:2018-01-30 16:33:09      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:gpo   algorithm   bzoj   names   char   line   连接   name   com   

技术分享图片

【题解】

  水题。。

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

#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. 打谷机

标签:gpo   algorithm   bzoj   names   char   line   连接   name   com   

原文地址:https://www.cnblogs.com/DriverLao/p/8383911.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!