# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
133625 | Mahdi_Jfri | 정렬하기 (IOI15_sorting) | C++14 | 25 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
const int maxn = 2e5 + 20;
int pos[maxn];
int findSwapPairs(int n, int a[], int m, int x[], int y[], int p[], int q[])
{
bool f = 1;
for(int i = 0; i < n; i++)
if(a[i] != i)
f = 0;
if(f)
return 0;
swap(a[x[0]] , a[y[0]]);
for(int i = 0; i < n; i++)
pos[i] = i;
for(int i = m - 2; i >= 0; i--)
swap(pos[x[i + 1]] , pos[y[i + 1]]);
for(int i = 0; i < m; i++)
{
bool f = 1;
for(int j = 0; j < n; j++)
if(a[j] != j)
f = 0;
if(f)
return i + 1;
for(int j = 0; j < n; j++)
if(pos[j] != a[j])
{
int ind = -1;
for(int k = 0; k < n; k++)
if(a[k] == pos[j])
ind = k;
while(ind < 0);
p[i] = j , q[i] = ind;
swap(a[j] , a[ind]);
break;
}
f = 1;
for(int j = 0; j < n; j++)
if(a[j] != j)
f = 0;
if(f)
return i + 1;
if(i + 1 < m)
{
swap(pos[x[i + 1]] , pos[y[i + 1]]);
swap(a[x[i + 1]] , a[y[i + 1]]);
}
}
return m;
}
컴파일 시 표준 에러 (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... |