bzoj4412[Usaco2016 Feb]Circular Barn

Posted YJY_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj4412[Usaco2016 Feb]Circular Barn相关的知识,希望对你有一定的参考价值。

先看成一条链

for一遍找位置

在for一遍算答案

#include<algorithm>
#include<iostream>
#include<cstring>
#include<string>
#include<cstdio>
#include<cmath>
using namespace std;

typedef long long LL;

#define N 100010

int n;
int cnt=1;

int a[N<<2],s[N<<2];

int main()
{
freopen("a.in","r",stdin);freopen("a.out","w",stdout);
scanf("%d",&n);
for (int i=1;i<=n;i++)
scanf("%d",&a[i]),a[n+i]=a[i];
for (int i=1;i<=n*2;i++)
{
if (i==cnt+n)
break;
s[i]=s[i-1]+a[i]-1;
while (s[i]<s[cnt-1])
cnt++;
}
LL ans=0;
int l=cnt+n-1,r=cnt+n-1;
while (r>=cnt)
{
while (!a[l])
l--;
ans+=(LL)(r-l)*(r-l);
a[l]--;
r--;
}
printf("%lld\n",ans);
return 0;
}

以上是关于bzoj4412[Usaco2016 Feb]Circular Barn的主要内容,如果未能解决你的问题,请参考以下文章

bzoj2590[Usaco2012 Feb]Cow Coupons*

BZOJ4410: [Usaco2016 Feb]Fence in

BZOJ 3942: [Usaco2015 Feb]Censoring

[BZOJ2591][Usaco 2012 Feb]Nearby Cows

bzoj3940 [Usaco2015 Feb]Censoring

BZOJ 1651: [Usaco2006 Feb]Stall Reservations 专用牛棚