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>
#include "shoes.h"
using namespace std;
#define MAXN 100005
typedef long long lld;
int N;
int A[MAXN], bit[MAXN];
stack <int> L[MAXN], R[MAXN], order;
void add(int n, int v){
for (;n<=N;n+=n&-n) bit[n] += v;
}
int get(int n)
{
int ret = 0;
for (;n;n-=n&-n) ret += bit[n];
return ret;
}
int move(int a, int b)
{
// a -> b
add(a, 1);
return b-(a-get(a-1));
}
lld count_swaps(vector<int> arr)
{
N = arr.size();
for (int i=1;i<=N;i++) A[i] = arr[i-1];
for (int i=1;i<=N;i++){
if (A[i] < 0) L[-A[i]].push(i);
if (A[i] > 0){
R[A[i]].push(i);
order.push(A[i]);
}
}
lld total = 0;
int pos = N;
while (!order.empty()){
int t = order.top();
total += move(R[t].top(), pos);
total += move(L[t].top(), pos-1);
order.pop(); R[t].pop(); L[t].pop();
pos -= 2;
}
return total;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |