# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
207250 | oscarsierra12 | 정렬하기 (IOI15_sorting) | C++14 | 1008 ms | 19952 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#include <bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
using namespace std ;
typedef long long ll ;
typedef pair<int,int> ii ;
const int n = 200010 ;
int prv[n], nxt[n] ;
int ind[n], ele[n] ;
int rind[n] ;
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
for ( int i = 0 ; i < N ; ++i )
rind[S[i]] = i ;
for ( int i = 0 ; i <= M ; ++i ) {
for ( int j = 0 ; j < N ; ++j ) prv[j] = nxt[j] = j ;
for ( int j = 0 ; j < i ; ++j ) {
int A = prv[X[j]] ;
int B = prv[Y[j]] ;
nxt[A] = Y[j] ;
prv[Y[j]] = A ;
nxt[B] = X[j] ;
prv[X[j]] = B ;
}
for ( int j = 0 ; j < N ; ++j ) {
ele[j] = S[prv[j]] ;
ind[S[prv[j]]] = j ;
}
vector <ii> swaps ;
for ( int j = 0 ; j < N ; ++j ) {
if ( ele[j] == j ) continue ;
swaps.pb ({rind[ele[j]], rind[ele[ind[j]]]}) ;
ind[ele[j]] = ind[j] ;
swap (ele[j], ele[ind[j]]) ;
}
if ( swaps.size() % 2 != i % 2 ) swaps.pb ({0,0}) ;
for ( int j = 0 ; j < N ; ++j ) prv[j] = nxt[j] = j ;
int id = 0 ;
for ( int j = 0 ; j < i ; ++j ) {
int A = prv[X[j]] ;
int B = prv[Y[j]] ;
nxt[A] = Y[j] ;
prv[Y[j]] = A ;
nxt[B] = X[j] ;
prv[X[j]] = B ;
if ( id < swaps.size() ) {
P[j] = nxt[swaps[id].ff] ;
Q[j] = nxt[swaps[id].ss] ;
}
else {
P[j] = X[j] ;
Q[j] = Y[j] ;
}
A = prv[P[j]] ;
B = prv[Q[j]] ;
nxt[A] = Q[j] ;
prv[Q[j]] = A ;
nxt[B] = P[j] ;
prv[P[j]] = B ;
id++ ;
}
if ( swaps.size() <= i ) return i ;
}
}
컴파일 시 표준 에러 (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... |