# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
438734 | faruk | Arranging Shoes (IOI19_shoes) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
#include <map>
#include <vector>
#define ll long long
using namespace std;
class BIT
{
private:
vector<ll> tree;
int n;
public:
BIT(int sizeOfTree)
{
n = sizeOfTree;
tree.resize(n + 1, 0);
}
void update(int index, ll value)
{
index++;
while (index < n)
tree[index] += value, index += index & (-index);
}
ll query(int index)
{
index++;
ll out = 0;
while (index > 0)
out += tree[index], index -= index & (-index);
return out;
}
};
map<int, vector<int> > located;
map<int, int> used;
map<int, bool> matched;
ll count_swaps(vector<int> S)
{
int n = S.size();
BIT passed(n);
for (int i = 0; i < n; i++)
located[S[i]].push_back(i);
ll out = 0;
for (int i = 0; i < n; i++)
{
if (matched[i])
continue;
int counterpart = upper_bound(located[-S[i]].begin(), located[-S[i]].end(), used[-S[i]]) - located[-S[i]].begin();
int val = located[-S[i]][counterpart];
matched[val] = true;
int swaps = (val - i) /*+ passed.query(val)*/;
passed.update(val, 1);
used[-S[i]] = val;
used[S[i]] = i;
if (S[i] < 0)
swaps--;
out += swaps;
}
return out;
}
int main()
{
int n;
cin >> n;
int arr[n];
for (int i = 0; i < n; i++)
cin >> arr[i];
cout << count_swaps(arr) << endl;
return 0;
}