题目描述
Being a fan of contemporary architecture, Farmer John has built a new barn in the shape of a perfect circle. Inside, the barn consists of a ring of $n$ rooms, numbered clockwise from $1 \"ldots n$ around the perimeter of the barn ($3 \"leq n \"leq 1000$). Each room has doors to its two neighboring rooms, and also a door opening to the exterior of the barn.
Farmer John owns $n$ cows, and he wants exactly one cow to end up in each room in the barn. However, the cows, being slightly confused, line up at haphazard doors, with possibly multiple cows lining up at the same door. Precisely $c_i$ cows line up outside the door to room $i$, so $\"sum c_i = n$.
To manage the process of herding the cows so that one cow ends up in each room, Farmer John wants to use the following approach: each cow enters at the door at which she initially lined up, then walks clockwise through the rooms until she reaches a suitable destination. Given that a cow walking through $d$ doors
consumes $d^2$ energy, please determine the minimum amount of energy needed to distribute the cows so one ends up in each room.
给定一个环长为n的环上每个点上有aia_i只牛,每只牛可以在环上顺时针移动,代价为移动距离的平方,问将环上每个节点上都有一只牛的代价是多少
输入格式:
The first line of input contains $n$. Each of the remaining $n$ lines contain
$c_1 \"ldots c_n$.
输出格式:
Please write out the minimum amount of energy consumed by the cows.
输入样例#1:
10
1
0
0
2
0
0
1
2
2
2
输出样例#1:
33