CF331A1.Oh Sweet Beaverette

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

— Oh my sweet Beaverette, would you fancy a walk along a wonderful woodland belt with me?

— Of course, my Smart Beaver! Let us enjoy the splendid view together. How about Friday night?

At this point the Smart Beaver got rushing. Everything should be perfect by Friday, so he needed to prepare the belt to the upcoming walk. He needed to cut down several trees.

Let's consider the woodland belt as a sequence of trees. Each tree ii is described by the esthetic appeal aia_{i} — some trees are very esthetically pleasing, others are 'so-so', and some trees are positively ugly!

The Smart Beaver calculated that he needed the following effects to win the Beaverette's heart:

  • The first objective is to please the Beaverette: the sum of esthetic appeal of the remaining trees must be maximum possible;
  • the second objective is to surprise the Beaverette: the esthetic appeal of the first and the last trees in the resulting belt must be the same;
  • and of course, the walk should be successful: there must be at least two trees in the woodland belt left.

Now help the Smart Beaver! Which trees does he need to cut down to win the Beaverette's heart?

输入格式

The first line contains a single integer nn — the initial number of trees in the woodland belt, 2<=n2<=n . The second line contains space-separated integers aia_{i} — the esthetic appeals of each tree. All esthetic appeals do not exceed 10910^{9} in their absolute value.

  • to get 30 points, you need to solve the problem with constraints: n<=100n<=100 (subproblem A1);
  • to get 100 points, you need to solve the problem with constraints: n<=3105n<=3·10^{5} (subproblems A1+A2).

输出格式

In the first line print two integers — the total esthetic appeal of the woodland belt after the Smart Beaver's intervention and the number of the cut down trees kk .

In the next line print kk integers — the numbers of the trees the Beaver needs to cut down. Assume that the trees are numbered from 1 to nn from left to right.

If there are multiple solutions, print any of them. It is guaranteed that at least two trees have equal esthetic appeal.

输入输出样例

  • 输入#1

    5
    1 2 3 1 2
    

    输出#1

    8 1
    1 
  • 输入#2

    5
    1 -2 3 1 -2
    

    输出#2

    5 2
    2 5 
首页