# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
16664 | suhgyuho_william | Sorting (IOI15_sorting) | C++98 | 30 ms | 384 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 "sorting.h"
#include <algorithm>
using namespace std;
int a[200002],location[200002];
int where[200002],last[200002];
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
int i,n=N,R;
int left,right;
int cnt;
left=0;
right=M;
for(R=0;R<=M;R++){
for(i=0;i<n;i++){
a[i]=S[i];
location[a[i]]=i;
where[a[i]]=i;
}
for(i=0;i<R;i++){
location[a[X[i]]]=Y[i];
location[a[Y[i]]]=X[i];
swap(a[X[i]],a[Y[i]]);
}
cnt=-1;
for(i=0;i<n;i++) last[i]=a[i];
for(i=0;i<n;i++) a[i]=S[i];
for(i=0;i<n;i++){
if(location[i]==i) continue;
cnt++;
if(cnt>=R) break;
where[a[X[cnt]]]=Y[cnt];
where[a[Y[cnt]]]=X[cnt];
swap(a[X[cnt]],a[Y[cnt]]);
P[cnt]=where[i];
Q[cnt]=where[last[i]];
location[last[i]]=location[i];
location[i]=i;
where[a[P[cnt]]]=Q[cnt];
where[a[Q[cnt]]]=P[cnt];
swap(a[P[cnt]],a[Q[cnt]]);
}
for(i=cnt+1;i<R;i++) P[i]=Q[i]=0;
if(cnt>=R) continue;
break;
}
return R;
}
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... |