이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#include <bits/stdc++.h>
using namespace std;
const int mxN = (int)2e5+10;
int n, a[mxN], temp[mxN], x[mxN], y[mxN], pos[mxN];
void swp(int a[], int i, int j){
if(i==j) return;
swap(pos[a[i]],pos[a[j]]), swap(a[i],a[j]);
}
int chk(int m, int P[], int Q[]){
for(int i = 0; i < n; i++) a[i] = temp[i], pos[a[i]] = i;
for(int i = 0; i < m; i++)
swp(a,x[i],y[i]), P[i]=Q[i]=0;
int tot = 0;
for(int i = 0; i < n; i++){
if(pos[i]==i) continue;
P[tot] = i, Q[tot++] = pos[i];
swp(a,i,pos[i]);
}
for(int i = 0; i < m; i++)
swp(a,x[i],y[i]), swp(a,P[i],Q[i]);
for(int i = 0; i < m; i++){
if(is_sorted(a,a+n)) return i;
swp(a,x[i],y[i]);
if(is_sorted(a,a+n)) return i+1;
swp(a,P[i],Q[i]);
}
return m;
}
int findSwapPairs(int N, int A[], int m, int X[], int Y[], int P[], int Q[]) {
n = N;
for(int i = 0; i < n; i++) a[i] = temp[i] = A[i];
for(int i = 0; i < m; i++) x[i] = X[i], y[i] = Y[i];
int l = 0, r = m;
while(l<r){
int mid = (l+r)/2;
if(chk(mid,P,Q)<=mid) r=mid;
else l=mid+1;
}
return chk(l,P,Q);
}
컴파일 시 표준 에러 (stderr) 메시지
sorting.cpp: In function 'void swp(int*, int, int)':
sorting.cpp:7:14: warning: declaration of 'a' shadows a global declaration [-Wshadow]
7 | void swp(int a[], int i, int j){
| ~~~~^~~
sorting.cpp:5:8: note: shadowed declaration is here
5 | int n, a[mxN], temp[mxN], x[mxN], y[mxN], pos[mxN];
| ^
# | 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... |