|
||||||||||
Swaps and InversionsTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 5335 Accepted Submission(s): 1898 Problem Description Long long ago, there was an integer sequence a. Tonyfang think this sequence is messy, so he will count the number of inversions in this sequence. Because he is angry, you will have to pay x yuan for every inversion in the sequence. You don't want to pay too much, so you can try to play some tricks before he sees this sequence. You can pay y yuan to swap any two adjacent elements. What is the minimum amount of money you need to spend? The definition of inversion in this problem is pair $(i,j)$ which $1 \leq i < j \leq n$ and $a_i > a_j$. Input There are multiple test cases, please read till the end of input file. For each test, in the first line, three integers, n,x,y, n represents the length of the sequence. In the second line, n integers separated by spaces, representing the orginal sequence a. $1 \leq n,x,y \leq 100000$, numbers in the sequence are in $[-10^9,10^9]$. There're 10 test cases. Output For every test case, a single integer representing minimum money to pay. Sample Input
Sample Output
Source | ||||||||||
|