이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> pii;
int n,m,b[200005],x[200005],y[200005],p[200005];
vector<pii> ans;
int a[200005],pos[200005],val[200005],c[200005];
bool check(int h, bool mode) {
for (int i=0; i<n; ++i) a[i]=i, val[i]=i, c[i]=b[i], p[i]=i;
for (int i=h; i>=0; --i) swap(a[x[i]],a[y[i]]);
vector<pii> v;
for (int i=0; i<n; ++i) pos[c[i]]=i;
for (int i=0; i<n; ++i) {
if (c[i]!=a[i]) {
v.push_back(pii(i,pos[a[i]]));
swap(pos[a[i]],pos[c[i]]);
swap(c[pos[c[i]]],c[i]);
}
}
reverse(v.begin(),v.end());
if (mode) {
for (int i=0; i<=h; ++i) {
swap(val[p[x[i]]],val[p[y[i]]]);
swap(p[x[i]],p[y[i]]);
if (v.size()) {
ans.push_back(pii(val[v.back().first],val[v.back().second]));
v.pop_back();
} else ans.push_back(pii(0,0));
}
}
if (v.size()<=h+1) return true;
else return false;
}
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
n=N; m=M;
for (int i=0; i<n; ++i) b[i]=S[i], x[i]=X[i], y[i]=Y[i];
for (int i=0; i<m; ++i) {
if (check(i,0)) {
check(i,1);
break;
}
}
for (int i=0; i<ans.size(); ++i) P[i]=ans[i].first, Q[i]=ans[i].second;
return ans.size();
}
컴파일 시 표준 에러 (stderr) 메시지
sorting.cpp: In function 'bool check(int, bool)':
sorting.cpp:37:14: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
37 | if (v.size()<=h+1) return true;
| ~~~~~~~~^~~~~
sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:52:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
52 | for (int i=0; i<ans.size(); ++i) P[i]=ans[i].first, Q[i]=ans[i].second;
| ~^~~~~~~~~~~
sorting.cpp:53:17: warning: conversion from 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} to 'int' may change value [-Wconversion]
53 | return ans.size();
| ~~~~~~~~^~
# | 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... |