# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
152576 | Myldero | Arranging Shoes (IOI19_shoes) | Java | 409 ms | 36380 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
import java.io.*;
import java.util.*;
import java.math.*;
class shoes {
int[] s;
int n, m;
int[] positions, pairs;
boolean[] visited;
Fenwick tree;
public long count_swaps(int[] S) {
s = S;
m = s.length;
n = m / 2;
positions = new int[m];
pairs = new int[m];
visited = new boolean[m];
tree = new Fenwick(m);
for (int i = 1; i <= m; i++) {
tree.update(i, 1);
}
matchPairs();
long sum = 0;
for (int i = m-1; i >= 1; i--) {
if (visited[i]) continue;
int a = pairs[i];
int posA = tree.get(a+1);
int posB = tree.get(i+1);
sum += posB - posA - 1;
tree.update(a+1, -1);
visited[a] = true;
if (s[a] > s[i]) sum++;
}
return sum;
}
void matchPairs () {
ArrayList<Integer>[] a = new ArrayList[n+1];
ArrayList<Integer>[] b = new ArrayList[n+1];
for (int i = 1; i <= n; i++) {
a[i] = new ArrayList<Integer>();
b[i] = new ArrayList<Integer>();
}
for (int i = 0; i < m; i++) {
if (s[i] < 0) {
a[-s[i]].add(i);
} else {
b[s[i]].add(i);
}
}
for (int i = 1; i <= n; i++) {
for (int j = 0; j < a[i].size(); j++) {
pairs[a[i].get(j)] = b[i].get(j);
pairs[b[i].get(j)] = a[i].get(j);
}
}
}
}
class Fenwick {
int n;
int[] arr;
public Fenwick (int n) {
this.n = n;
arr = new int[n+1];
}
public int lsb (int a) {
return a & -a;
}
public void update (int idx, int value) {
while (idx <= n) {
arr[idx] += value;
idx += lsb(idx);
}
}
public int get (int idx) {
int sum = 0;
while (idx > 0) {
sum += arr[idx];
idx -= lsb(idx);
}
return sum;
}
}
컴파일 시 표준 에러 (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... |