-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcountInversion.cpp
More file actions
74 lines (67 loc) · 2.11 KB
/
countInversion.cpp
File metadata and controls
74 lines (67 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/ *Given an array of integers. Find the Inversion Count in the array.
Inversion Count: For an array, inversion count indicates how far (or close) the array is from being sorted.
If array is already sorted then the inversion count is 0. If an array is sorted in the reverse order then the inversion count is the maximum.
Formally, two elements a[i] and a[j] form an inversion if a[i] > a[j] and i < j.
Example 1: Input: N = 5, arr[] = {2, 4, 1, 3, 5}
Output: 3
Explanation: The sequence 2, 4, 1, 3, 5 has three inversions (2, 1), (4, 1), (4, 3). */
#include <bits/stdc++.h>
using namespace std;
class Solution{
public:
// arr[]: Input Array
// N : Size of the Array arr[]
// Function to count inversions in the array.
long long inversionCount(long long arr[],long long N)
{
long long invCount=mergeSort(arr,0,N-1);
return invCount;
}
long long mergeSort(long long *a,long long l,long long u)
{
long long mid,invCount=0;
if(l<u)
{
mid=(l+u)/2;
invCount=invCount+mergeSort(a,l,mid);
invCount=invCount+mergeSort(a,mid+1,u);
invCount=invCount+merge(a,l,mid+1,u);
}
return invCount;
}
long long merge(long long *a,long long l,long long mid,long long u)
{
long long b[u+1],i=l,j=mid,k=l,invCount=0;
while(i<=mid-1 && j<=u)
{
if(a[i]<=a[j])
b[k++]=a[i++];
else{
b[k++]=a[j++];
invCount=invCount+(mid-i);
}
}
while(i<=mid-1)
b[k++]=a[i++];
while(j<=u)
b[k++]=a[j++];
for(k=l;k<=u;k++)
a[k]=b[k];
return invCount;
}
};
int main() {
long long T;
cin >> T;
while(T--){
long long N;
cin >> N;
long long A[N];
for(long long i = 0;i<N;i++){
cin >> A[i];
}
Solution obj;
cout << obj.inversionCount(A,N) << endl;
}
return 0;
}