# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
669706 | 2022-12-07T06:22:02 Z | victor_gao | 정렬하기 (IOI15_sorting) | C++17 | 1 ms | 340 KB |
#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 findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { for (int i=0;i<N;i++){ bk[i]=i; pos_bk[i]=i; pre[i]=S[i]; pos_pre[S[i]]=i; } 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]; } /* cout<<"Now : "; for (int j=0;j<N;j++) cout<<pre[j]<<" \n"[j==N-1]; cout<<"pos_pre : "; for (int j=0;j<N;j++) cout<<pos_pre[j]<<" \n"[j==N-1]; cout<<"from back : "; for (int j=0;j<N;j++) cout<<bk[j]<<" \n"[j==N-1]; cout<<"from back pos : "; for (int j=0;j<N;j++) cout<<pos_bk[j]<<" \n"[j==N-1]; */ for (int i=0;i<N;i++){ swap(pre[X[i]],pre[Y[i]]); 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]; int now=i+1; /* cout<<"Now : "; for (int j=0;j<N;j++) cout<<pre[j]<<" \n"[j==N-1]; cout<<"pos_pre : "; for (int j=0;j<N;j++) cout<<pos_pre[j]<<" \n"[j==N-1]; cout<<"from back : "; for (int j=0;j<N;j++) cout<<bk[j]<<" \n"[j==N-1]; cout<<"from back pos : "; for (int j=0;j<N;j++) cout<<pos_bk[j]<<" \n"[j==N-1]; cout<<"swap "<<pos_pre[now]<<" "<<pos_bk[now]<<'\n'; */ bool flag=1; for (int j=0;j<N;j++){ if (pre[j]!=j){ flag=0; break; } } if (flag) return i; P[i]=pos_pre[now]; Q[i]=pos_bk[now]; swap(pre[pos_pre[now]],pre[pos_bk[now]]); pos_pre[pre[pos_pre[now]]]=pos_pre[now]; pos_pre[pre[pos_bk[now]]]=pos_bk[now]; } return N; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Correct | 1 ms | 212 KB | Output is correct |
6 | Correct | 1 ms | 212 KB | Output is correct |
7 | Correct | 1 ms | 212 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Correct | 1 ms | 212 KB | Output is correct |
6 | Correct | 1 ms | 212 KB | Output is correct |
7 | Correct | 1 ms | 212 KB | Output is correct |
8 | Correct | 1 ms | 212 KB | Output is correct |
9 | Correct | 0 ms | 212 KB | Output is correct |
10 | Correct | 0 ms | 340 KB | Output is correct |
11 | Correct | 0 ms | 340 KB | Output is correct |
12 | Correct | 1 ms | 324 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Correct | 1 ms | 212 KB | Output is correct |
6 | Correct | 1 ms | 212 KB | Output is correct |
7 | Correct | 1 ms | 212 KB | Output is correct |
8 | Correct | 1 ms | 212 KB | Output is correct |
9 | Correct | 0 ms | 212 KB | Output is correct |
10 | Correct | 0 ms | 340 KB | Output is correct |
11 | Correct | 0 ms | 340 KB | Output is correct |
12 | Correct | 1 ms | 324 KB | Output is correct |
13 | Incorrect | 0 ms | 212 KB | Output isn't correct |
14 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |