# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
71488 | RezwanArefin01 | Sorting (IOI15_sorting) | C++17 | 42 ms | 512 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include "sorting.h"
using namespace std;
const int N = 2e5 + 10;
int p[N], pos[N];
int tp[N], tq[N];
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
auto check = [&](int t) {
for(int i = 0; i < N; i++) p[i] = S[i];
for(int i = 0; i <= t; i++) swap(p[X[i]], p[Y[i]]);
for(int i = 0; i < N; i++) pos[p[i]] = i;
int cnt = 0;
for(int i = 0; i < N; i++) {
if(p[i] != i) {
tp[cnt] = i;
tq[cnt++] = p[i];
int x = p[i];
swap(p[i], p[pos[i]]);
pos[x] = pos[i];
for(int j = 0; j < N; j++)
pos[p[j]] = j;
}
}
return cnt;
};
int lo = 0, hi = M, ans = -1;
while(lo <= hi) {
int mid = lo + hi >> 1;
if(check(mid) <= mid + 1) ans = mid, hi = mid - 1;
else lo = mid + 1;
}
for(int i = check(ans); i <= ans; i++)
tp[i] = tq[i] = 0;
for(int i = 0; i < N; i++) p[i] = S[i];
for(int i = 0; i < N; i++) pos[p[i]] = i;
auto fn = [&](int i, int j) {
pos[p[i]] = j;
pos[p[j]] = i;
swap(p[i], p[j]);
for(int x = 0; x < N; x++)
pos[p[x]] = x;
};
for(int i = 0; i <= ans; i++) {
fn(X[i], Y[i]);
P[i] = pos[tp[i]];
Q[i] = pos[tq[i]];
fn(P[i], Q[i]);
}
return 1 + ans;
}
Compilation message (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... |