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

BZOJ 1800 [Ahoi2009]fly 飞行棋

时间:2017-09-29 10:07:37      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:turn   blog   ahoi2009   closed   type   scanf   algo   img   div   

水题。

把弧长和sum求出,若为奇数显然无解。

从1~n-1枚举,找出一段和为sum/2的段的个数。

ans=tot*(tot-1)/2;

技术分享
//Twenty
#include<cstdio>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<queue>
#include<vector>
typedef long long LL;
using namespace std;
int n,a[25],sum,now;
int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;i++) {
        scanf("%d",&a[i]);
        sum+=a[i];
    }
    if(sum&1) printf("0\n");
    else {
        sum>>=1;
        int j=1,ans=0;
        for(int i=1;i<n;i++) {
            now+=a[i];
            while(now>sum) {
                now-=a[j];
                j++;
            }
            if(now==sum) ans++;
        }
        printf("%d\n",ans*(ans-1)/2);
    }
    return 0;
}
View Code

 

BZOJ 1800 [Ahoi2009]fly 飞行棋

标签:turn   blog   ahoi2009   closed   type   scanf   algo   img   div   

原文地址:http://www.cnblogs.com/Achenchen/p/7605907.html

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