# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
690967 | finn__ | Arranging Shoes (IOI19_shoes) | C++17 | 81 ms | 16548 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#include "shoes.h"
struct FenwickTree
{
vector<int> t;
FenwickTree(size_t n)
{
t = vector<int>(n, 0);
}
void prefix_increment(int i, int x)
{
i++;
while (i <= t.size())
{
t[i - 1] += x;
i += i & -i;
}
}
void range_increment(int i, int j, int x)
{
prefix_increment(i, x);
if (j < t.size() - 1)
prefix_increment(j + 1, -x);
}
int point_query(int i)
{
i++;
int x = 0;
while (i)
{
x += t[i - 1];
i -= i & -i;
}
return x;
}
};
long long count_swaps(vector<int> s)
{
size_t const n = s.size();
vector<bool> processed(n, 0);
vector<priority_queue<unsigned, vector<unsigned>, greater<unsigned>>> q(n);
for (unsigned i = 0; i < n; i++)
q[2 * (abs(s[i]) - 1) + (s[i] < 0)].push(i);
long long swaps_needed = 0;
FenwickTree tree(n);
for (unsigned i = 0; i < n; i++)
{
if (!processed[i])
{
processed[i] = 1;
while (processed[q[2 * (abs(s[i]) - 1) + (s[i] > 0)].top()])
q[2 * (abs(s[i]) - 1) + (s[i] > 0)].pop();
unsigned j = q[2 * (abs(s[i]) - 1) + (s[i] > 0)].top();
q[2 * (abs(s[i]) - 1) + (s[i] > 0)].pop();
processed[j] = 1;
swaps_needed += j + tree.point_query(j) - i - tree.point_query(i) - (s[i] < 0);
tree.range_increment(i, j, 1);
}
}
return swaps_needed;
}
컴파일 시 표준 에러 (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... |