-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsorted_permutation_rank.cpp
74 lines (70 loc) · 1.49 KB
/
sorted_permutation_rank.cpp
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
//Question Link - https://www.interviewbit.com/problems/sorted-permutation-rank/
// Solution
const int mod = 1000003;
int factorial(int x)
{
if(x == 0 || x == 1) return 1;
return (x%mod * factorial(x-1)%mod)%mod;
}
int Solution::findRank(string A) {
int n = A.size();
vector<int> p(n, 0);
string B =A;
sort(B.begin(), B.end());
int j=0;
vector<int> count(n,0);
vector<int> vis(n,0);
for(int i=0; i<n; i++)
{
if(A[i] == B[j])
{
vis[j]=1;
while(vis[j]==1) j++;
continue;
}
int num=0;
for(int k=j+1; k<n; k++)
{
if(!vis[k]) num++;
if(A[i] == B[k])
{
count[i]=num;
vis[k]=1;
}
}
}
int l=n-1;
int summ=0;
for(int i=0; i<n; i++)
{
if(count[i]!=0)
{
summ = (summ%mod + ((factorial(l)%mod)*(count[i]%mod))%mod)%mod;
}
l--;
}
return (summ%mod + 1)%mod;
}
////////
long long fac(int n){
int mod=1000003;
if(n==0)
return 1;
long long temp=fac(n-1);
temp = (temp*n%mod)%mod;
return temp;
}
int Solution::findRank(string A) {
int n=A.size();
int mod=1000003;
long long ans=0;
for(int i=0;i<n;i++){
int cnt=0;
for(int j=i+1;j<n;j++){
if(A[j]<A[i])
cnt++;
}
ans = (ans + ((long long)fac(n-i-1)%mod*cnt%mod) )%mod;
}
return (ans+1)%mod;
}