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

bzoj1800 飞行棋

时间:2017-09-28 20:02:32      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:using   space   return   ble   amp   ring   else   div   stream   

 

脑筋急转弯。

提示:矩形矩形矩形。O(n)O(n)O(n)。

 

再提示:直角。

 

再提示:直径。

 

代码:

//Serene
#include<algorithm>
#include<iostream>
#include<cstring>
#include<cstdlib>
#include<cstdio>
#include<cmath>
using namespace std;
const int maxn=20+5;
int n,a[maxn],tot,sum;

int aa;char cc;
int read() {
	aa=0;cc=getchar();
	while(cc<‘0‘||cc>‘9‘) cc=getchar();
	while(cc>=‘0‘&&cc<=‘9‘) aa=aa*10+cc-‘0‘,cc=getchar();
	return aa;
}

int main() {
	n=read();
	for(int i=1;i<=n;++i) a[i]=read(),tot+=a[i];
	if(tot&1) {
		printf("0");
		return 0;
	}
	else tot>>=1;
	int t=0,now=0;
	for(int pos=1;pos<=n;++pos) {
		while(now<tot) {
			t=t%n+1; now+=a[t];
		}
		if(now==tot) sum++;
		now-=a[pos];
	}
	sum/=2;
	printf("%d",sum*(sum-1)/2);
	return 0;
}

  

bzoj1800 飞行棋

标签:using   space   return   ble   amp   ring   else   div   stream   

原文地址:http://www.cnblogs.com/Serene-shixinyi/p/7608105.html

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