CF1420E.Battle Lemmings
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A lighthouse keeper Peter commands an army of n battle lemmings. He ordered his army to stand in a line and numbered the lemmings from 1 to n from left to right. Some of the lemmings hold shields. Each lemming cannot hold more than one shield.
The more protected Peter's army is, the better. To calculate the protection of the army, he finds the number of protected pairs of lemmings, that is such pairs that both lemmings in the pair don't hold a shield, but there is a lemming with a shield between them.
Now it's time to prepare for defence and increase the protection of the army. To do this, Peter can give orders. He chooses a lemming with a shield and gives him one of the two orders:
- give the shield to the left neighbor if it exists and doesn't have a shield;
- give the shield to the right neighbor if it exists and doesn't have a shield.
In one second Peter can give exactly one order.
It's not clear how much time Peter has before the defence. So he decided to determine the maximal value of army protection for each k from 0 to 2n(n−1) , if he gives no more that k orders. Help Peter to calculate it!
输入格式
First line contains a single integer n ( 1≤n≤80 ), the number of lemmings in Peter's army.
Second line contains n integers ai ( 0≤ai≤1 ). If ai=1 , then the i -th lemming has a shield, otherwise ai=0 .
输出格式
Print 2n(n−1)+1 numbers, the greatest possible protection after no more than 0,1,…,2n(n−1) orders.
输入输出样例
输入#1
5 1 0 0 0 1
输出#1
0 2 3 3 3 3 3 3 3 3 3
输入#2
12 0 0 0 0 1 1 1 1 0 1 1 0
输出#2
9 12 13 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
说明/提示
Consider the first example.
The protection is initially equal to zero, because for each pair of lemmings without shields there is no lemmings with shield.
In one second Peter can order the first lemming give his shield to the right neighbor. In this case, the protection is two, as there are two protected pairs of lemmings, (1,3) and (1,4) .
In two seconds Peter can act in the following way. First, he orders the fifth lemming to give a shield to the left neighbor. Then, he orders the first lemming to give a shield to the right neighbor. In this case Peter has three protected pairs of lemmings — (1,3) , (1,5) and (3,5) .
You can make sure that it's impossible to give orders in such a way that the protection becomes greater than three.