# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
133627 | ckodser | 정렬하기 (IOI15_sorting) | C++14 | 663 ms | 524292 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#include<bits/stdc++.h>
#define ll int
#define pb push_back
#define ld long double
#define mp make_pair
#define F first
#define S second
#define pii pair<ll,ll>
using namespace :: std;
const ll maxn=2e5+500;
const ll inf=1e9+900;
ll per[maxn];
ll s[maxn];
ll x[maxn];
ll y[maxn];
ll n,m;
vector<pii> vec;
void dfs(ll a){
if(per[a]==a)return;
vec.pb(mp(a,per[a]));
swap(per[a],per[per[a]]);
dfs(a);
}
void copytoper(){
for(ll i=0;i<n;i++){
per[i]=s[i];
}
}
bool mishe(ll mid){
copytoper();
for(ll i=0;i<mid;i++){
swap(per[x[i]],per[y[i]]);
}
vec.clear();
for(ll i=0;i<n;i++){
dfs(i);
}
return (vec.size()<=mid);
}
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
n=N,m=M;
for(ll i=0;i<n;i++){
s[i]=S[i];
}
for(ll i=0;i<m;i++){
x[i]=X[i];
y[i]=Y[i];
}
ll b=-1;
ll e=M;
while(e-b>1){
ll mid=(e+b)/2;
if(mishe(mid)){
e=mid;
}else{
b=mid;
}
}
// ans=e;
copytoper();
for(ll i=0;i<e;i++){
swap(per[x[i]],per[y[i]]);
}
vec.clear();
for(ll i=0;i<n;i++){
dfs(i);
}
while(vec.size()<e){
vec.pb(mp(0,0));
}
if(vec.size()>e){
exit(1);
cout<<"WTF?!";
return 0;
}
for(ll i=0;i<n;i++){
per[i]=i;
}
for(ll i=e-1;i>=0;i--){
swap(per[x[i]],per[y[i]]);
}
vector<pii> ans;
for(ll i=0;i<e;i++){
swap(per[x[i]],per[y[i]]);
pii a=vec[i];
ll b1,b2;
for(ll i=0;i<n;i++){
if(per[i]==a.F)b1=i;
if(per[i]==a.S)b2=i;
}
ans.pb(mp(b1,b2));
}
for(ll i=0;i<e;i++){
P[i]=ans[i].F;
Q[i]=ans[i].S;
}
copytoper();
for(ll i=0;i<e;i++){
// cout<<P[i]<<' '<<Q[i]<<endl;
swap(per[x[i]],per[y[i]]);
swap(per[Q[i]],per[P[i]]);
}
for(ll i=0;i<n;i++){
if(per[i]!=i){
while(per[i]!=i){
per[i+1]=i;
}
}
}
return e;
}
컴파일 시 표준 에러 (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... |