# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
745630 | 2023-05-20T16:45:23 Z | Dan4Life | 정렬하기 (IOI15_sorting) | C++17 | 1 ms | 468 KB |
#include "sorting.h" #include <bits/stdc++.h> using namespace std; const int mxN = (int)2e5+10; int n, m, a[mxN], temp[mxN], x[mxN], y[mxN], pos[mxN]; void swp(int a[], int i, int j){ if(i==j) return; swap(pos[a[i]],pos[a[j]]), swap(a[i],a[j]); } int chk(int m, int P[], int Q[]){ for(int i = 0; i < n; i++) a[i] = temp[i], pos[a[i]] = i; for(int i = 0; i < m; i++) swp(a,x[i],y[i]),P[i]=Q[i]=0; for(int i = 0; i < n; i++){ if(pos[i]==i) continue; P[i] = i, Q[i] = pos[i]; swp(a,i,pos[i]); } for(int i = 0; i < m; i++) swp(a,x[i],y[i]), swp(a,P[i],Q[i]); for(int i = 0; i < m; i++){ if(is_sorted(a,a+n)) return i; swp(a,x[i],y[i]); if(is_sorted(a,a+n)){ P[i]=Q[i]=0; return i+1; } swp(a,P[i],Q[i]); } return m; } int findSwapPairs(int N, int A[], int M, int X[], int Y[], int P[], int Q[]) { n = N, m = M; for(int i = 0; i < n; i++) a[i] = temp[i] = A[i]; for(int i = 0; i < m; i++) x[i] = X[i], y[i] = Y[i]; int l = 0, r = m; while(l<r){ int mid = (l+r)/2; if(chk(mid,P,Q)<=mid) r=mid; else l=mid+1; } return chk(l,P,Q); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Incorrect | 1 ms | 212 KB | Output isn't correct |
4 | 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 | Incorrect | 1 ms | 212 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Incorrect | 0 ms | 212 KB | Output isn't correct |
3 | 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 | Incorrect | 1 ms | 212 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 468 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 468 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |