ACM--Shooting

D - Shooting

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 ai. 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 (ai⋅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.

input

The first line of the input contains one integer n (2≤n≤1000) — the number of cans.

The second line of the input contains the sequence a1,a2,…,an (1≤ai≤1000), where ai is the durability of the i-th can.

output

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.

Examples

Input
3
20 10 20
Output
43
1 3 2
Input
4
10 10 10 10
Output
64
2 1 4 3
Input
6
5 4 5 4 4 5
Output
69
6 1 3 5 2 4
Input
2
1 4
Output
3
2 1

Note

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⋅1+1=21 times. After that only second can remains. To knock it down Vasya shoots 10⋅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.
解题思路
Using the greedy algorithm, the title means that the number of times the i-th jar is poured is a[i]*num+1, and then add up to get the sum, where the data is placed in node[i].data, and the position is placed in node In [i].place, the order of sorting is to put the one with the highest number of knockdowns first, and when the number of collections is the same, sort by position

inlude<iostream>
#include<algorithm>
using namespace std;

struct Node{
    
    
	int data,place;
	bool operator < (const Node& that)const{
    
    
		return this->data> that.data;	
	}
}node[1003];

int main(void)
{
    
    
	int i,n;
	cin>>n;
	for(i=1;i<=n;i++){
    
    
		cin>>node[i].data;
		node[i].place=i;
	}
	sort(node+1,node+n+1);
	
	int sum=0,num=0;
	for(i=1;i<=n;i++){
    
    
		sum+=node[i].data*num+1;
		num++;
	}
	cout<<sum<<endl;
	for(i=1;i<=n;i++)
		cout<<node[i].place<<' ';
	cout<<endl;
	return 0;
}

Guess you like

Origin blog.csdn.net/weixin_45950429/article/details/110305202