Count Inversion Problem
未关闭
- 主要语言
- C++
- 星标
- 504
- 派生
- 436
- PR 合并指标
- 30 天内没有已合并 PR
描述
**Inversion Count** : For an array, inversion count indicates how far (or close) the array is from being sorted. If array is already sorted then inversion count is 0. If array is sorted in reverse order that inversion count is the maximum.
Formally, two elements a[i] and a[j] form an inversion if a[i] > a[j] and i < j.
**Input**:
The first line of input contains an integer T denoting the number of test cases. The first line of each test case is N, the size of array. The second line of each test case contains N elements.
**Output**:
Print the inversion count of array.
**Constraints**:
1 ≤ T ≤ 100
1 ≤ N ≤ 107
1 ≤ C ≤ 1018
**Example**:
**Input**:
1
5
2 4 1 3 5
**Output**:
3
贡献指南
这个仓库没有索引到贡献指南
评估
这个 Issue 还没有评估数据。