# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
571880 | kwongweng | Sorting (IOI15_sorting) | C++17 | 1 ms | 340 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 <bits/stdc++.h>
using namespace std;
typedef vector<int> vi;
typedef long long ll;
typedef long double ld;
#define FOR(i,a,b) for(int i = a; i < b; i++)
#define ROF(i,a,b) for(int i = a; i >= b; i--)
#define fi first
#define se second
#define pb push_back
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
int pos[N];
FOR(i,0,N){
pos[S[i]] = i;
}
if (X[0] == 0 && Y[0] == 0){
FOR(i,0,N-1){
P[i] = pos[i];
Q[i] = i;
if (S[P[i]] != S[Q[i]]){
swap(pos[S[P[i]]], pos[S[Q[i]]]);
swap(S[P[i]], S[Q[i]]);
}
}
return N-1;
}
FOR(i,0,N-1){
if (S[X[i]] != S[Y[i]]){
swap(pos[S[X[i]]], pos[S[Y[i]]]);
swap(S[X[i]], S[Y[i]]);
}
if (i == N-2){
if (S[0] == 0){
P[i] = 0; Q[i] = 0;
}else{
P[i] = 0, Q[i] = 1;
}
if (S[P[i]] != S[Q[i]]){
swap(pos[S[P[i]]], pos[S[Q[i]]]);
swap(S[P[i]], S[Q[i]]);
}
break;
}
P[i] = pos[i+2];
Q[i] = i+2;
if (S[P[i]] != S[Q[i]]){
swap(pos[S[P[i]]], pos[S[Q[i]]]);
swap(S[P[i]], S[Q[i]]);
}
}
return N-1;
}
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... |