# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
421233 | Pbezz | Sorting (IOI15_sorting) | C++14 | 5 ms | 332 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;
#define ll long long
#define pb push_back
typedef pair<ll,ll> pii;
const ll MAXN=2e5+5;
const ll INF=1e9+7;
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
int i,k,j,R=0;
bool ok=true;
for(i=0;i<N;i++){
if(S[i]!=i)ok=false;
}
if(ok)return 0;
/*
if(Y[0]==1){//cout<<"haha1";
swap(S[0],S[1]);
ok=true;
for(j=0;j<N;j++){
if(S[j]!=j)ok=false;
}
if(ok){
P[0]=0; Q[0]=0;
return 1;
}
for(k=0;k<N;k++){
if(S[k]==0)break;
}
P[R]=k;
Q[R]=1;
R++;
swap(S[k],S[1]);
ok=true;
for(j=0;j<N;j++){
if(S[j]!=j)ok=false;
}
if(ok)return 1;
swap(S[0],S[1]);
//agora, 1 esta em posiçao e vamos meter o 2
ok=true;
for(j=0;j<N;j++){
if(S[j]!=j)ok=false;
}
if(ok){
P[1]=0; Q[1]=0;
return 2;
}
for(k=0;k<N;k++){
if(S[k]==1)break;
}
P[R]=k;
Q[R]=1;
R++;
swap(S[k],S[1]);
//esta tudo bem, continuar
ok=true;
for(j=0;j<N;j++){
if(S[j]!=j)ok=false;
}
if(ok)return 2;
for(i=2;i<N;i++){//find i, send it to ith position
for(k=0;k<N;k++){
if(S[k]==i-1)break;
}
P[R]=k;
Q[R]=i-1;
R++;
swap(S[k],S[i-1]);
ok=true;
for(j=0;j<N;j++){
if(S[j]!=j)ok=false;
}
if(ok){
return i+1;
}
}
if(R%2==1){
P[R]=0;
Q[R]=0;
R++;
}
}else{//his moves are redundant
*/
for(i=0;i<N;i++){//find i, send it to ith position
for(k=0;k<N;k++){
if(S[k]==i)break;
}
if(k!=i){
P[R]=k;
Q[R]=i;
R++;
swap(S[k],S[i]);
ok=true;
for(j=0;j<N;j++){
if(S[j]!=j)ok=false;
}
if(ok){
return R;
}
}
}
/*
for(i=0;i<N;i++){
cout<<S[i]<<" ";
}cout<<endl;*/
//while(R>0&&P[R-1]==Q[R-1])R--;
//}
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... |