# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
302727 | square1001 | 정렬하기 (IOI15_sorting) | C++14 | 1076 ms | 10056 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
fill(P, P + M, 0);
fill(Q, Q + M, 0);
if(is_sorted(S, S + N)) {
return 0;
}
int pl = 0, pr = M;
while(pr - pl > 1) {
int pm = (pl + pr) >> 1;
vector<int> T(S, S + N);
for(int i = 0; i < pm; ++i) {
swap(T[X[i]], T[Y[i]]);
}
vector<bool> vis(N, false);
int cycles = 0;
for(int i = 0; i < N; ++i) {
if(vis[i]) continue;
int pos = i;
++cycles;
while(!vis[pos]) {
vis[pos] = true;
pos = T[pos];
}
}
int steps = N - cycles;
if(pm >= steps) pr = pm;
else pl = pm;
}
int L = pr;
for(int i = 0; i < L; ++i) {
swap(S[X[i]], S[Y[i]]);
}
vector<bool> vis2(N, false);
int cl = 0;
for(int i = 0; i < N; ++i) {
if(vis2[i]) continue;
vector<int> path;
int pos = i;
while(!vis2[pos]) {
path.push_back(pos);
vis2[pos] = true;
pos = S[pos];
}
for(int j = int(path.size()) - 1; j >= 1; --j) {
P[cl] = path[j - 1];
Q[cl] = path[j];
++cl;
}
}
vector<int> perm(N);
for(int i = 0; i < N; ++i) {
perm[i] = i;
}
for(int i = L - 1; i >= 0; --i) {
P[i] = find(perm.begin(), perm.end(), P[i]) - perm.begin();
Q[i] = find(perm.begin(), perm.end(), Q[i]) - perm.begin();
swap(perm[X[i]], perm[Y[i]]);
}
return L;
}
컴파일 시 표준 에러 (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... |