# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
96889 | figter001 | 정렬하기 (IOI15_sorting) | C++14 | 3 ms | 512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 2e5+50;
vector<int> a;
vector<pair<int,int>> s;
int idx[maxn];
bool can(int md){
vector<int> b = a;
for(int i=0;i<md;i++)
swap(b[s[i].first],b[s[i].second]);
int cnt = 0;
for(int i=0;i<a.size();i++){
while(b[i] != i){
cnt ++;
swap(b[i],b[b[i]]);
}
}
return cnt <= md;
}
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
for(int i=0;i<N;i++)a.push_back(S[i]);
for(int i=0;i<M;i++)s.push_back({X[i],Y[i]});
int md,lo=0,hi = M,ans;
while(lo <= hi){
md = (lo + hi)/2;
if(can(md)){
hi = md-1;
ans = md;
}else lo = md+1;
}
for(int i=0;i<ans;i++)swap(a[s[i].first],a[s[i].second]);
vector<pair<int,int>> c;
vector<int> b = a;
for(int i=0;i<a.size();i++){
while(a[i] != i){
c.push_back({i,a[i]});
swap(a[i],a[a[i]]);
}
}
a = b;
while(c.size() < md)c.push_back({0,0});
for(int i=0;i<N;i++)idx[a[i]] = i;
for(int i=0;i<ans;i++){
int l = s[i].first;
int r = s[i].second;
swap(idx[a[l]],idx[a[r]]);
swap(a[l],a[r]);
l = c[i].first;
r = c[i].second;
P[i] = idx[l];
Q[i] = idx[r];
swap(a[P[i]],a[Q[i]]);
swap(idx[l],idx[r]);
}
return ans;
}
컴파일 시 표준 에러 (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... |