이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#include <cstring>
#include <vector>
#include <utility>
#include <cassert>
#include <cstdio>
#define fi first
#define se second
using namespace std;
typedef pair<int, int> pii;
int N, M, s[2000005], x[2000005], y[2000005], state[2000005], seen[2000005], pos[2000005];
int check(int steps) {
for (int i = 0; i < N; i++) state[i] = s[i];
for (int i = 0; i < steps; i++) {
if (x[i] != y[i]) {
swap(state[x[i]], state[y[i]]);
}
}
int cycles = 0;
for (int i = 0; i < N; i++) {
if (!seen[i]) {
seen[i] = 1;
cycles++;
int cur = state[i];
while (cur != i) {
seen[cur] = 1;
cur = state[cur];
}
}
}
int swaps = N - cycles;
memset(seen, 0, sizeof(seen));
return swaps <= steps;
}
int findSwapPairs(int n, int S[], int m, int X[], int Y[], int P[], int Q[]) {
N = n;
M = m;
for (int i = 0; i < N; i++) s[i] = S[i];
for (int i = 0; i < M; i++) {
x[i] = X[i];
y[i] = Y[i];
}
int lo = -1, hi = M;
while (lo + 1 < hi) {
int mid = (lo + hi) / 2;
if (check(mid)) hi = mid;
else lo = mid;
}
// Takes hi number of swaps
for (int i = 0; i < N; i++) state[i] = s[i];
for (int i = 0; i < hi; i++) {
if (x[i] != y[i]) {
swap(state[x[i]], state[y[i]]);
}
}
int R = 0;
for (int i = 0; i < N; i++) {
if (!seen[i]) {
seen[i] = 1;
if (state[i] != i) {
int cur = state[i];
while (cur != i) {
// Swap cur with state[cur]
seen[cur] = 1;
cur = state[cur];
assert(R < M);
P[R] = cur;
Q[R] = state[cur];
R++;
}
}
}
}
for (int i = 0; i < N; i++) pos[s[i]] = i, state[i] = s[i];
// Simulate now - We have to keep track of which positions which elements are in
assert(R <= hi && hi <= M);
for (int i = 0; i < R; i++) {
// Forced turn
swap(pos[state[x[i]]], pos[state[y[i]]]);
swap(state[x[i]], state[y[i]]);
//printf("Swapping %d (%d) and %d (%d)\n", P[i], pos[P[i]], Q[i], pos[Q[i]]);
swap(pos[P[i]], pos[Q[i]]);
P[i] = pos[P[i]];
Q[i] = pos[Q[i]];
swap(state[P[i]], state[Q[i]]);
}
for (int i = R; i < hi; i++) P[i] = Q[i] = 0;
//printf("End result:");
//for (int i = 0; i < N; i++) printf(" %d", state[i]);
//printf("\n");
return hi;
}
# | 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... |