CF1579E2.Array Optimization by Deque
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
In fact, the problems E1 and E2 do not have much in common. You should probably think of them as two separate problems.
You are given an integer array a[1…n]=[a1,a2,…,an] .
Let us consider an empty deque (double-ended queue). A deque is a data structure that supports adding elements to both the beginning and the end. So, if there are elements [3,4,4] currently in the deque, adding an element 1 to the beginning will produce the sequence [1,3,4,4] , and adding the same element to the end will produce [3,4,4,1] .
The elements of the array are sequentially added to the initially empty deque, starting with a1 and finishing with an . Before adding each element to the deque, you may choose whether to add it to the beginning or to the end.
For example, if we consider an array a=[3,7,5,5] , one of the possible sequences of actions looks like this:
1.add 3 to the beginning of the deque:deque has a sequence [3] in it; 2.add 7 to the end of the deque:deque has a sequence [3,7] in it; 3.add 5 to the end of the deque:deque has a sequence [3,7,5] in it; 4.add 5 to the beginning of the deque:deque has a sequence [5,3,7,5] in it;Find the minimal possible number of inversions in the deque after the whole array is processed.
An inversion in sequence d is a pair of indices (i,j) such that i<j and di>dj . For example, the array d=[5,3,7,5] has exactly two inversions — (1,2) and (3,4) , since d1=5>3=d2 and d3=7>5=d4 .
输入格式
The first line contains an integer t ( 1≤t≤1000 ) — the number of test cases.
The next 2t lines contain descriptions of the test cases.
The first line of each test case description contains an integer n ( 1≤n≤2⋅105 ) — array size. The second line of the description contains n space-separated integers ai ( −109≤ai≤109 ) — elements of the array.
It is guaranteed that the sum of n over all test cases does not exceed 2⋅105 .
输出格式
Print t lines, each line containing the answer to the corresponding test case. The answer to a test case should be a single integer — the minimal possible number of inversions in the deque after executing the described algorithm.
输入输出样例
输入#1
6 4 3 7 5 5 3 3 2 1 3 3 1 2 4 -1 2 2 -1 4 4 5 1 3 5 1 3 1 3 2
输出#1
2 0 1 0 1 2
说明/提示
One of the ways to get the sequence [5,3,7,5] in the deque, containing only two inversions, from the initial array [3,7,5,5] (the first sample test case) is described in the problem statement.
Also, in this example, you could get the answer of two inversions by simply putting each element of the original array at the end of the deque. In this case, the original sequence [3,7,5,5] , also containing exactly two inversions, will be in the deque as-is.