# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
227950 | staniewzki | Arranging Shoes (IOI19_shoes) | C++17 | 170 ms | 14840 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#include "shoes.h"
struct Fenwick {
vector<int> tree;
Fenwick(int n) : tree(n + 1) {}
void update(int pos, int val) {
for(pos++; pos < size(tree); pos += (pos & -pos))
tree[pos] += val;
}
int query(int pos) {
int ret = 0;
for(pos++; pos > 0; pos -= (pos & -pos))
ret += tree[pos];
return ret;
}
int query(int l, int r) {
return query(r) - query(l - 1);
}
};
long long count_swaps(vector<int> s) {
int m = size(s), n = m / 2;
vector<vector<int>> pos(m + 1);
for(int i = m - 1; i >= 0; i--)
pos[n + s[i]].emplace_back(i);
long long ans = 0;
Fenwick tree(m);
for(int i = 0; i < m; i++) {
if(!tree.query(i, i)) {
int j = pos[n - s[i]].back();
ans += j - (i + 1) - tree.query(i, j) + (s[i] > 0);
tree.update(j, +1);
pos[n - s[i]].pop_back();
pos[n + s[i]].pop_back();
}
}
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... |