# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
641703 | Benmath | 정렬하기 (IOI15_sorting) | C++14 | 3 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "sorting.h"
using namespace std;
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
int n=N;
int bro=0;
int R=n-1;
for(int i=0;i<=(n-2);i++){
swap(S[X[i]],S[Y[i]]);
int loc=i;
for(int j=n-2;j>i;j--){
if(X[j]==loc){
loc=Y[j];
}else{
if(Y[j]==loc){
loc=X[j];
}
}
}
int loc1=-1;
for(int j=0;j<n;j++){
if(S[j]==i){
loc1=j;
break;
}
}
if(loc1!=loc){
P[i]=loc1;
Q[i]=loc;
swap(S[P[i]],S[Q[i]]);
}else{
P[i]=loc1;
Q[i]=loc1;
}
}
return R;
}
/*
int main(){
}
*/
컴파일 시 표준 에러 (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... |