이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#include <bits/stdc++.h>
using namespace std;
int a[200010], pos[200010], s[200010];
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
if (is_sorted(s, s+N)) return 0;
for (int _=0; _<M; ++_){
for (int i=0; i<N; ++i) s[i]=S[i];
for (int i=0; i<N; ++i) pos[s[i]]=i;
iota(a, a+N, 0);
for (int i=_; i>=0; --i) swap(a[X[i]], a[Y[i]]);
for (int i=0; i<M; ++i){
P[i]=Q[i]=0;
swap(a[X[i]], a[Y[i]]);
swap(s[X[i]], s[Y[i]]);
pos[s[X[i]]]=X[i];
pos[s[Y[i]]]=Y[i];
if (is_sorted(s, s+N)) return 0;
for (int j=0; j<N; ++j) if (a[j]!=s[j]){
int k=pos[a[j]];
P[i]=j, Q[i]=k;
break;
}
swap(s[P[i]], s[Q[i]]);
pos[s[P[i]]]=P[i];
pos[s[Q[i]]]=Q[i];
if (is_sorted(s, s+N)) return 0;
}
return _+1;
}
return -1;
}
# | 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... |