# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1039948 | Zicrus | 정렬하기 (IOI15_sorting) | C++17 | 983 ms | 748 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "sorting.h"
using namespace std;
typedef long long ll;
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
vector<ll> h(N);
for (int i = 0; i < N; i++) h[i] = S[i];
ll ooo = 0;
for (int i = 0; i < N; i++) {
if (h[i] != i) ooo++;
}
if (ooo == 0) return 0;
ll res1 =0;
ll low = 1, high = M;
while (low < high) {
ll g = (low + high) / 2;
ll res = 0;
vector<ll> s = h;
for (int i = 0; i < g; i++) {
swap(s[X[i]], s[Y[i]]);
vector<ll> order = s;
for (int j = i+1; j < M; j++) {
swap(order[X[j]], order[Y[j]]);
}
int firstOut = -1, id = -1;
for (int j = 0; j < N; j++) {
if (order[j] != j) {
firstOut = order[id = j];
break;
}
}
if (firstOut == -1) {
P[res] = Q[res] = 0;
res++;
}
else {
ll v = *find(order.begin(), order.end(), id);
ll id1 = find(s.begin(), s.end(), firstOut) - s.begin();
ll id2 = find(s.begin(), s.end(), v) - s.begin();
swap(s[id1], s[id2]);
P[res] = id1;
Q[res] = id2;
res++;
}
firstOut = -1;
for (int j = 0; j < N; j++) {
if (s[j] != j) {
firstOut = s[j];
break;
}
}
if (firstOut == -1) return res;
}
ll ooo = 0;
for (int i = 0; i < N; i++) {
if (s[i] != i) ooo++;
}
if (ooo == 0) {
res1 = res;
high = g;
}
else {
low = g+1;
}
}
return res1;
}
컴파일 시 표준 에러 (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... |