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 left (node<<1),l,((l+r)>>1)
#define right ((node<<1)|1),((l+r)>>1) + 1,r
#define N 200005
#define int long long
using namespace std;
priority_queue <int> q;
int fen[200005];
vector <int> v[200005];
void upd(int in,int val){
while (in <= N){
fen[in]+=val;
in += (in&(-in));
}
}
int get(int in){
int sum=0;
while (in > 0){
sum+=fen[in];
in -= (in&(-in));
}
return sum;
}
main(){
ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0);
int n;
cin>>n;
for (int i=1;i<=n;i++){
int a;
cin>>a;
v[a].pb(i);
}
int ind = n,ans = 0;
while (ind > 0){
for (int i = 0; i < v[ind].size(); i++)
q.push(v[ind][i] - get(v[ind][i] - 1));
if (q.size() == 0){
cout<<-1;
return 0;
}
int x = q.top();
q.pop();
ans+=ind - x;
upd(x,1),upd(ind + 1,-1);
ind--;
}
cout<<ans;
}
Compilation message (stderr)
Main.cpp:27:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
27 | main(){
| ^
Main.cpp: In function 'int main()':
Main.cpp:40:27: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int, std::allocator<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
40 | for (int i = 0; i < v[ind].size(); i++)
| ~~^~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |