# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
712134 | 2023-03-18T07:49:54 Z | neki | 정렬하기 (IOI15_sorting) | C++14 | 2 ms | 340 KB |
#include <bits/stdc++.h> //#include "sorting.h" #define vc vector using namespace std; int findSwapPairs(int n, int s[], int m, int x[], int y[], int a[], int b[]) { int is[n];for(int i=0;i<n;++i) is[s[i]]=i; function<bool (int)> solve=[&](int meja){ int p[n], ip[n], z[n], iz[n]; for(int i=0;i<n;++i) p[i]=i, z[i]=iz[i]=i; for(int i=meja;i>=0;--i) swap(p[x[i]], p[y[i]]); for(int i=0;i<n;++i) ip[p[i]]=i; int j=0; for(int i=meja;i>=0;--i){ while(j<n && j==s[p[iz[j]]]) ++j; if(j<n) a[i]=iz[j], b[i]=ip[is[j]]; else a[i]=b[i]=0; swap(ip[p[x[i]]], ip[p[y[i]]]); swap(p[x[i]], p[y[i]]); swap(iz[z[a[i]]], iz[z[b[i]]]); swap(z[a[i]], z[b[i]]); swap(iz[z[x[i]]], iz[z[y[i]]]); swap(z[x[i]], z[y[i]]); } return j==n; }; int l=0, r=m-1; while(l<r){ int mid=(l+r)/2, j=0; if(solve(mid)) r=mid; else l=mid+1; } solve(l); return l; }
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 | 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 | Incorrect | 1 ms | 212 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |