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.
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.
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.
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
In the first example Vasya can start shooting from the first can. He knocks it down with the first shot because he haven't knocked any other cans down before. After that he has to shoot the third can. To knock it down he shoots $20 \cdot 1 + 1 = 21$ times. After that only second can remains. To knock it down Vasya shoots $10 \cdot 2 + 1 = 21$ times. So the total number of shots is $1 + 21 + 21 = 43$ .
In the second example the order of shooting does not matter because all cans have the same durability.
In the second example the order of shooting does not matter because all cans have the same durability.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted