# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
398456 | iulia13 | Arranging Shoes (IOI19_shoes) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include "shoes.h"
using namespace std;
const int nmax = 1e5 + 5;
int aib[nmax * 4];
int moved[nmax], n;
vector <int> a[nmax * 4];
int lsb(int x)
{
return x & (-x);
}
void upd(int x, int val)
{
for (x; x <= n; x += lsb(x))
aib[x] += val;
}
int qry(int x)
{
int s = 0;
while (x)
{
s += aib[x];
x -= lsb(x);
}
return x;
}
int count_swaps(vector<int> v)
{
int i, ans = 0;
n = v.size();
for (i = n - 1; 0 <= i; i--)
a[v[i] + n].push_back(i);
for (i = 0; i < n; i++)
{
if (moved[i])
continue;
int j = a[n - v[i]].back(), swaps = 0; ///i < j
if (v[i] > 0)
swaps = 1;
///aduci j langa i adica pe i + 1
swaps += j - i - 1 - (qry(j) - qry(i));
upd(j, 1);
ans += swaps;
moved[j] = 1;
a[n - v[i]].pop_back();
a[n + v[i]].pop_back();
}
return ans;
}/*
int main()
{
int N, i;
cin >> N;
vector <int> v;
v.resize(N);
for (i = 0; i < N; i++)
cin >> v[i];
cout << count_swaps(v);
return 0;
}*/