Preparando MOJI
You have to restore the wall. The wall consists of $$$N$$$ pillars of bricks, the height of the $$$i$$$-th pillar is initially equal to $$$h_{i}$$$, the height is measured in number of bricks. After the restoration all the $$$N$$$ pillars should have equal heights.
You are allowed the following operations:
You cannot create additional pillars or ignore some of pre-existing pillars even if their height becomes $$$0$$$.
What is the minimal total cost of restoration, in other words, what is the minimal total cost to make all the pillars of equal height?
The first line of input contains four integers $$$N$$$, $$$A$$$, $$$R$$$, $$$M$$$ ($$$1 \le N \le 10^{5}$$$, $$$0 \le A, R, M \le 10^{4}$$$) — the number of pillars and the costs of operations.
The second line contains $$$N$$$ integers $$$h_{i}$$$ ($$$0 \le h_{i} \le 10^{9}$$$) — initial heights of pillars.
Print one integer — the minimal cost of restoration.
3 1 100 100 1 3 8
12
3 100 1 100 1 3 8
9
3 100 100 1 1 3 8
4
5 1 2 4 5 5 3 6 5
4
5 1 2 2 5 5 3 6 5
3