# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
774061 | _martynas | Arranging Shoes (IOI19_shoes) | C++14 | 65 ms | 16424 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll count_swaps(vector<int> s) {
int n = s.size()/2;
vector<ll> fen(2*n+1);
auto add = [&](int i, int x) {
i++;
while(i <= 2*n) {
fen[i] += x;
i += i&(-i);
}
};
auto get = [&](int i) {
i++;
ll sum = 0;
while(i) {
sum += fen[i];
i -= i&(-i);
}
return sum;
};
for(int i = 0; i < 2*n; i++) {
add(i, 1);
}
vector<int> to(2*n, -1);
vector<vector<int>> where(2*n+3);
for(int i = 0; i < 2*n; i++) {
where[s[i]+n].push_back(i);
}
for(int i = 0; i < n; i++) {
for(int j = 0; j < where[i].size(); j++) {
int a = where[i][j], b = where[abs(i-n)+n][j];
if(a > b) swap(a, b);
to[a] = b;
}
}
ll ans = 0;
for(int i = 0; i < 2*n; i++) {
if(to[i] == -1) continue;
int prev = ans;
if(s[i] > 0) ans++;
add(i, -1); add(to[i], -1);
ans += get(to[i])-get(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... |