이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#include <bits/stdc++.h>
#define uwu return 0;
using namespace std;
const int SIZE = 2e5 + 5;
int s[SIZE], tar[SIZE], x[SIZE], y[SIZE], p[SIZE], q[SIZE], pos_of_val[SIZE];
void build(int M){
for(int i = M - 1; i >= 0; i--){
swap(tar[x[i]], tar[y[i]]);
}
return;
}
void get_sequence(int N, int M){
for(int i = 0; i < M; i++){
swap(s[x[i]], s[y[i]]);
for(int j = 0; j < N; j++){
pos_of_val[s[j]] = j;
}
swap(tar[x[i]], tar[y[i]]);
for(int j = 0; j < N; j++){
if(s[j] != tar[j]){
swap(s[j], s[pos_of_val[tar[j]]]);
p[i] = j;
q[i] = pos_of_val[tar[j]];
break;
}
}
}
return;
}
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
for(int i = 0; i < N; i++){
tar[i] = i;
s[i] = S[i];
}
for(int i = 0; i < M; i++){
x[i] = X[i];
y[i] = Y[i];
}
build(M);
get_sequence(N, M);
for(int i = 0; i < M; i++){
P[i] = p[i];
Q[i] = q[i];
}
for(int i = 0; i < N; i++){
S[i] = i;
}
return M;
}
# | 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... |