题库练习 Shooting
← 上一题 下一题 →

A14522 | Shooting

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Recently Vasya decided to improve his pistol shooting skills. Today his coach offered him the following exercise. He placed $n$ cans in a row on a table. Cans are numbered from left to right from $1$ to $n$ . Vasya has to knock down each can exactly once to finish the exercise. He is allowed to choose the order in which he will knock the cans down.

Vasya knows that the durability of the $i$ -th can is $a_i$ . It means that if Vasya has already knocked $x$ cans down and is now about to start shooting the $i$ -th one, he will need $(a_i \cdot x + 1)$ shots to knock it down. You can assume that if Vasya starts shooting the $i$ -th can, he will be shooting it until he knocks it down.

Your task is to choose such an order of shooting so that the number of shots required to knock each of the $n$ given cans down exactly once is minimum possible.

输入格式

The first line of the input contains one integer $n$ $(2 \le n \le 1\,000)$ — the number of cans.

The second line of the input contains the sequence $a_1, a_2, \dots, a_n$ $(1 \le a_i \le 1\,000)$ , where $a_i$ is the durability of the $i$ -th can.

输出格式

In the first line print the minimum number of shots required to knock each of the $n$ given cans down exactly once.

In the second line print the sequence consisting of $n$ distinct integers from $1$ to $n$ — the order of indices of cans that minimizes the number of shots required. If there are several answers, you can print any of them.

输入输出样例

输入 #1
3
20 10 20
输出 #1
43
1 3 2
输入 #2
4
10 10 10 10
输出 #2
64
2 1 4 3
输入 #3
6
5 4 5 4 4 5
输出 #3
69
6 1 3 5 2 4
输入 #4
2
1 4
输出 #4
3
2 1
C++ 编辑器
输入
输出