This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define f first
#define s second
#define pb push_back
#define ll long long
using namespace std;
int a[200005],b[200005];
int main(){
int n;
cin>>n;
for (int i = 1; i <= n; i++)
cin>>a[i],b[i] = a[i];
sort(b + 1,b + n + 1);
for (int i = 1;i <= n; i++)
if (b[i] < i) {
cout<<-1;
return 0;
}
int ans=0;
while (true){
int ind = 0;
for (int i = n; i >= 1; i--)
if (a[i] < i) {ind = i; break;}
if (ind == 0) break;
int m = a[ind];
for (int i = ind - 1; i >= 1; i--){
swap(a[i],a[i + 1]);
ans++;
if (m >= i) break;
}
}
cout<<ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |