# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
145385 | Eae02 | Arranging Shoes (IOI19_shoes) | C++14 | 678 ms | 148040 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
using ll = long long;
using namespace std;
map<int, deque<int>> positions;
inline int LSB(int x)
{
return x & (-x);
}
class FenwickTree
{
public:
FenwickTree(size_t size) : V(size + 1, 0) { }
//Prefix sum of the first n items (nth not included)
int PrefixSum(int n)
{
int sum = 0;
for (; n; n -= LSB(n))
sum += V[n];
return sum;
}
void Adjust(int i, int delta)
{
i++;
for (; i < V.size(); i += LSB(i))
V[i] += delta;
}
private:
std::vector<int> V;
};
ll count_swaps(vector<int> s) {
FenwickTree removed(s.size());
for (int i = 0; i < (int)s.size(); i++) {
positions[s[i]].push_back(i);
}
vector<bool> done(s.size(), false);
ll swaps = 0;
for (int i = 0; i < (int)s.size(); i++) {
if (done[i])
continue;
int v = s[i];
deque<int>& posNeg = positions.at(-v);
int negIdx = posNeg.front();
posNeg.pop_front();
positions.at(v).pop_front();
swaps += negIdx - (removed.PrefixSum(negIdx) - removed.PrefixSum(i)) - i;
removed.Adjust(negIdx, 1);
done[negIdx] = true;
if (v < 0)
swaps--;
}
return swaps;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |