# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
640190 | ymm | Arranging Shoes (IOI19_shoes) | C++17 | 219 ms | 273652 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
#define Loop(x,l,r) for (ll x = (l); x < (r); ++x)
#define LoopR(x,l,r) for (ll x = (r)-1; x >= (l); --x)
typedef long long ll;
typedef std::pair<int, int> pii;
typedef std::pair<ll , ll > pll;
using namespace std;
static const int N = 200'010;
static queue<int> l[N], r[N];
static int fen[N];
static void add_fen(int r, int x)
{
while (r > 0) {
fen[r] += x;
r -= r & -r;
}
}
static void add(int l, int r)
{
add_fen(r, 1);
add_fen(l, -1);
}
static int get(int i)
{
++i;
int ans = 0;
while (i < N) {
ans += fen[i];
i += i & -i;
}
return ans;
}
long long count_swaps(std::vector<int> s) {
ll ans = 0;
Loop (i, 0, s.size()) {
int x = s[i];
if (x < 0) {
if (r[-x].size()) {
ans += i - r[-x].front() - get(r[-x].front());
add(r[-x].front(), i);
r[-x].pop();
} else {
l[-x].push(i);
}
} else {
if (l[x].size()) {
ans += i - l[x].front() - get(l[x].front()) - 1;
add(l[x].front(), i);
l[x].pop();
} else {
r[x].push(i);
}
}
}
return ans;
}
컴파일 시 표준 에러 (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... |