# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
914109 | lamter | Arranging Shoes (IOI19_shoes) | C++17 | 1 ms | 432 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
using i64 = long long int;
struct BIT {
int n;
std::vector <int> a;
BIT(int _n = 0) : n(_n) {
a.assign(n, 0);
}
void update(int x, int v) {
for (; x < n; x |= x + 1)
a[x] += v;
}
int get(int x) const {
int ans = 0;
for (; x >= 0; x = (x & (x + 1)) - 1)
ans += a[x];
return ans;
}
};
i64 count_inversion(std::vector <int> a) {
i64 ans = 0;
int n = a.size();
BIT bit(n);
for (int i = 0; i < n; i += 1) {
ans += i - bit.get(a[i]);
bit.update(a[i], +1);
}
return ans;
}
i64 count_swaps(std::vector <int> a) {
int n = (int) a.size();
std::map <int, std::vector <int>> maps;
int T = 0;
std::vector <int> pos(n);
for (int i = 0; i < n; i += 1) {
int x = a[i];
if (maps[-x].empty()) {
maps[x].push_back(T + (x > 0));
pos[i] = T + (x > 0);
T += 2;
} else {
pos[i] = maps[-x].back() + (x > 0 ? +1 : -1);
maps[-x].pop_back();
}
}
for (int i = 0; i < n; i += 1)
return count_inversion(pos);
}
#ifdef ILOVELAMTER
int main(void) {
std::cout << count_swaps({4, -4}) << '\n';
return 0;
}
#endif // ILOVELAMTER
컴파일 시 표준 에러 (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... |