# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
669729 | victor_gao | Sorting (IOI15_sorting) | C++17 | 1026 ms | 21524 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "sorting.h"
#include <bits/stdc++.h>
#define MAXN 200015
using namespace std;
int bk[MAXN],pos_bk[MAXN],pre[MAXN],pos_pre[MAXN];
int solve(int N,int n,int S[],int P[],int Q[],int X[],int Y[]){
int now=0,cnt_same=0;
for (int i=0;i<N;i++){
bk[i]=i; pos_bk[i]=i;
pre[i]=S[i]; pos_pre[S[i]]=i;
if (pre[i]==i) cnt_same++;
}
for (int i=n-1;i>=0;i--){
swap(bk[X[i]],bk[Y[i]]);
pos_bk[bk[X[i]]]=X[i];
pos_bk[bk[Y[i]]]=Y[i];
}
for (int i=0;i<n;i++){
if (cnt_same==N) return n;
if (pre[X[i]]==X[i]) cnt_same--;
if (pre[Y[i]]==Y[i]) cnt_same--;
swap(pre[X[i]],pre[Y[i]]);
if (pre[X[i]]==X[i]) cnt_same++;
if (pre[Y[i]]==Y[i]) cnt_same++;
pos_pre[pre[X[i]]]=X[i];
pos_pre[pre[Y[i]]]=Y[i];
swap(bk[X[i]],bk[Y[i]]);
pos_bk[bk[X[i]]]=X[i];
pos_bk[bk[Y[i]]]=Y[i];
now=i;
# | 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... |