# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
669710 | victor_gao | 정렬하기 (IOI15_sorting) | C++17 | 101 ms | 460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#include <bits/stdc++.h>
#define MAXN 200015
using namespace std;
int bk[MAXN],pos_bk[MAXN],pre[MAXN],pos_pre[MAXN];
int solve(int N,int n,int S[],int P[],int Q[],int X[],int Y[]){
for (int i=0;i<N;i++){
bk[i]=i; pos_bk[i]=i;
pre[i]=S[i]; pos_pre[S[i]]=i;
}
for (int i=n-1;i>=0;i--){
swap(bk[X[i]],bk[Y[i]]);
pos_bk[bk[X[i]]]=X[i];
pos_bk[bk[Y[i]]]=Y[i];
}
for (int i=0;i<n;i++){
bool flag=1;
for (int j=0;j<N;j++){
if (pre[j]!=j){
flag=0;
break;
}
}
if (flag)
return i;
swap(pre[X[i]],pre[Y[i]]);
pos_pre[pre[X[i]]]=X[i];
pos_pre[pre[Y[i]]]=Y[i];
swap(bk[X[i]],bk[Y[i]]);
pos_bk[bk[X[i]]]=X[i];
pos_bk[bk[Y[i]]]=Y[i];
int now=i;
P[i]=pos_pre[now]; Q[i]=pos_bk[now];
swap(pre[pos_pre[now]],pre[pos_bk[now]]);
pos_pre[pre[pos_pre[now]]]=pos_pre[now];
pos_pre[pre[pos_bk[now]]]=pos_bk[now];
}
bool flag=1;
for (int i=0;i<N;i++){
if (pre[i]!=i) flag=0;
}
if (flag) return n;
else return 1e9;
}
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
int mn=1e9,pos;
for (int i=0;i<N+1;i++){
int need=solve(N,i,S,P,Q,X,Y);
if (need<mn){
mn=need;
pos=i;
}
}
return solve(N,pos,S,P,Q,X,Y);
}
컴파일 시 표준 에러 (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... |