# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
143939 | tincamatei | Arranging Shoes (IOI19_shoes) | C++14 | 111 ms | 14844 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <vector>
#include <cstdlib>
#include <cstdio>
using namespace std;
vector<int> aib;
static inline int lsb(int x) {
return x & (-x);
}
void update(int poz, int val) {
while(poz <= aib.size()) {
aib[poz] += val;
poz += lsb(poz);
}
}
int query(int poz) {
int rez = 0;
while(poz > 0) {
rez += aib[poz];
poz -= lsb(poz);
}
return rez;
}
long long sweep(const vector<int> &x) {
int N = x.size() / 2;
long long rez = 0LL;
vector<int> last(1 + N, -1);
for(int i = 0; i < 2 * N; ++i) {
if(last[abs(x[i])] == -1)
last[abs(x[i])] = i + 1;
else {
rez = rez + query(i) - query(last[abs(x[i])]);
update(i + 1, 1);
update(last[abs(x[i])], 1);
if(x[i] < 0)
++rez;
}
}
return rez;
}
long long count_swaps(std::vector<int> s) {
int N = s.size() / 2;
vector<vector<int> > pozLeft(N), pozRight(N);
vector<int> norm(2 * N);
for(int i = 0; i < 2 * N; ++i)
if(s[i] < 0)
pozLeft[-s[i] - 1].push_back(i);
else
pozRight[s[i] - 1].push_back(i);
int id = 0;
for(int i = 0; i < N; ++i) {
for(int j = 0; j < pozLeft[i].size(); ++j) {
++id;
norm[pozLeft[i][j]] = -id;
norm[pozRight[i][j]] = id;
}
}
aib.clear();
aib.resize(1 + 2 * N, 0);
return sweep(norm);
}
컴파일 시 표준 에러 (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... |