# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
293982 | arayi | 정렬하기 (IOI15_sorting) | C++17 | 3 ms | 512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "sorting.h"
using namespace std;
const int N = 2e5 + 30;
int n, m;
int a[N], ind[N], b[N], x[N], y[N];
int col[N];
void dfs(int v)
{
col[v] = 1;
if(!col[b[v]]) dfs(b[v]);
}
int cnt()
{
int ret = 0;
for (int i = 0; i < n; i++)
if(!col[i]) ret++, dfs(i);
for (int i = 0; i < n; i++) col[i] = 0;
return n - ret;
}
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[])
{
n = N;
for (int i = 0; i < n; i++) a[i] = S[i], ind[a[i]] = i;
for (int i = 0; i < M; i++) x[i] = X[i], y[i] = Y[i];
int l = 0, r = M, ans = M;
while(l <= r)
{
int mid = (l + r) / 2;
for (int i = 0; i < n; i++) b[i] = a[i];
for (int i = 0; i < mid; i++) swap(b[x[i]], b[y[i]]);
int sm = cnt();
if(sm <= mid) ans = mid, r = mid - 1;
else l = mid + 1;
}
m = min(M, ans + 1);
for (int i = 0; i < m; i++)
{
if(x[i] == y[i]) continue;
col[x[i]]++, col[y[i]]++;
}
queue <int> q;
for (int i = 0; i < n; i++)
if(!col[i]) q.push(i);
for (int i = 0; i < m; i++)
{
swap(a[x[i]], a[y[i]]);
if(x[i] != y[i])
{
col[x[i]]--, col[y[i]]--;
if(!col[x[i]]) q.push(x[i]);
if(!col[y[i]]) q.push(y[i]);
ind[a[x[i]]] = x[i];
ind[a[y[i]]] = y[i];
}
while(!q.empty() && q.front() == a[q.front()]) q.pop();
if(q.empty()) P[i] = Q[i] = 0;
else
{
int i1 = q.front();
//cout << i1 << endl;
P[i] = i1;
Q[i] = ind[i1];
swap(a[P[i]], a[Q[i]]);
ind[a[P[i]]] = P[i];
ind[a[Q[i]]] = Q[i];
q.pop();
}
}
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... |