이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#include "sorting.h"
//macros
typedef long long ll;
typedef pair<int, int> ii;
typedef pair<ll, ll> lll;
typedef tuple<int, int, int> iii;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef vector<iii> viii;
typedef vector<ll> vll;
typedef vector<lll> vlll;
#define REP(a,b,c) for(int a=int(b); a<int(c); a++)
#define RE(a,c) REP(a,0,c)
#define RE1(a,c) REP(a,1,c+1)
#define REI(a,b,c) REP(a,b,c+1)
#define REV(a,b,c) for(int a=int(c-1); a>=int(b); a--)
#define INF 1e9
#define pb push_back
#define fi first
#define se second
#define sz size()
const int MX = 2e5+100;
int a[MX], sa[MX];
int b[MX];
int n;
int *S, *X, *Y;
void swapA(int x, int y) {
swap(a[x], a[y]);
swap(b[x], b[y]);
sa[a[x]] = x;
sa[a[y]] = y;
}
int visited[MX];
void dfs(int u) {
if(visited[u]) return;
visited[u] = 1;
dfs(b[u]);
}
bool possible(int len) {
RE(i,n) visited[i] = 0;
int cyc = 0;
RE(i,n) {
if(visited[i]) continue;
dfs(i);
cyc++;
}
if(n-cyc <= len) return 1;
return 0;
}
int findSwapPairs(int _n, int _S[], int m, int _X[], int _Y[], int P[], int Q[]) {
n=_n, S=_S, X=_X, Y=_Y;
RE(i,n) a[i]=sa[i]=i;
RE(i,n) b[i] = S[i];
int times = 0;
RE(i,n) {
if(possible(i)) break;
swapA(sa[X[i]], sa[Y[i]]);
times++;
}
int R = 0; int curI = 0;
RE(i,times) {
bool sorted = 1;
RE(j,n) if(S[j] != j) sorted = 0;
if(sorted) break;
R++;
swapA(X[i], Y[i]);
swap(S[X[i]], S[Y[i]]);
int x=0, y=0;
while(x == y) {
if(curI == n) break;
RE(j,n) if(S[j] == curI) x = j;
RE(j,n) if(a[j] == curI) y = j;
curI++;
}
swap(S[x], S[y]);
P[R-1] = x;
Q[R-1] = y;
}
return R;
}
컴파일 시 표준 에러 (stderr) 메시지
sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:60:41: warning: unused parameter 'm' [-Wunused-parameter]
60 | int findSwapPairs(int _n, int _S[], int m, int _X[], int _Y[], int P[], int Q[]) {
| ~~~~^
# | 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... |