CF933E.A Preponderant Reunion

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

East or west, home is best. That's why family reunion, the indispensable necessity of Lunar New Year celebration, is put in such a position.

After the reunion dinner, Little Tommy plays a game with the family. Here is a concise introduction to this game:

  1. There is a sequence of nn non-negative integers p1,p2,...,pnp_{1},p_{2},...,p_{n} in the beginning. It is ruled that each integer in this sequence should be non-negative at any time.
  2. You can select two consecutive positive integers in this sequence, pip_{i} and pi+1p_{i+1} (1<=i<n) , and then decrease them by their minimum (i. e. min(pi,pi+1)min(p_{i},p_{i+1}) ), the cost of this operation is equal to min(pi,pi+1)min(p_{i},p_{i+1}) . We call such operation as a descension.
  3. The game immediately ends when there are no two consecutive positive integers. Your task is to end the game so that the total cost of your operations is as small as possible.

Obviously, every game ends after at most n1n-1 descensions. Please share your solution of this game with the lowest cost.

输入格式

The first line contains one integer nn (1<=n<=3105)(1<=n<=3·10^{5}) .

The second line contains nn space-separated integers p1,p2,...,pnp_{1},p_{2},...,p_{n} (0<=pi<=109,i=1,2,...,n)(0<=p_{i}<=10^{9},i=1,2,...,n) .

输出格式

In the first line print one integer as the number of descensions mm (0<=m<=n1)(0<=m<=n-1) .

In the next mm lines print the descensions chronologically. More precisely, in each line of the next mm lines print one integer ii (1<=i<n) representing a descension would operate on pip_{i} and pi+1p_{i+1} such that all the descensions could be utilized from top to bottom.

If there are many possible solutions to reach the minimal cost, print any of them.

输入输出样例

  • 输入#1

    4
    2 1 3 1
    

    输出#1

    2
    1
    3
    
  • 输入#2

    5
    2 2 1 3 1
    

    输出#2

    3
    2
    1
    4
    

说明/提示

In the first sample, one possible best solution is , of which the cost is 1+1=21+1=2 .

In the second sample, one possible best solution is , of which the cost is 1+1+1=31+1+1=3 .

首页