# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
210938 | autumn_eel | 정렬하기 (IOI15_sorting) | C++14 | 49 ms | 10720 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#include <bits/stdc++.h>
#define rep(i,n)for(int i=0;i<(n);i++)
using namespace std;
int s[3000],spos[3000];
int p[3000],ppos[3000];
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
if(is_sorted(S,S+N))return 0;
auto C=[&](int R){
rep(i,N)p[i]=i,s[i]=S[i];
for(int i=R-1;i>=0;i--){
swap(p[X[i]],p[Y[i]]);
}
rep(i,N){
ppos[p[i]]=i;
spos[s[i]]=i;
}
int g=0;
rep(i,R){
swap(p[X[i]],p[Y[i]]);
swap(ppos[p[X[i]]],ppos[p[Y[i]]]);
swap(s[X[i]],s[Y[i]]);
swap(spos[s[X[i]]],spos[s[Y[i]]]);
while(g<N&&spos[g]==ppos[g])g++;
if(g==N){
P[i]=Q[i]=0;continue;
}
int a=spos[g],b=ppos[g];
P[i]=a;Q[i]=b;
swap(s[a],s[b]);
swap(spos[s[a]],spos[s[b]]);
}
rep(i,N)assert(p[i]==i);
rep(i,N){
if(s[i]!=i)return false;
}
return true;
};
int ok=N,ng=0;
while(ok-ng>1){
int R=(ok+ng)/2;
if(C(R))ok=R;
else ng=R;
}
C(ok);
return ok;
}
컴파일 시 표준 에러 (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... |