# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
801990 | caganyanmaz | 정렬하기 (IOI15_sorting) | C++17 | 146 ms | 21080 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#define pb push_back
#include <bits/stdc++.h>
using namespace std;
constexpr static int MXSIZE = 2e5;
int e[MXSIZE];
int n;
int component[MXSIZE];
int *s, *x, *y;
void dfs(int node, int c)
{
component[node] = c;
if (component[e[node]] == -1)
dfs(e[node], c);
}
void construct(int k)
{
for (int i = 0; i < n; i++)
e[i] = s[i];
for (int i = 0; i < k; i++)
swap(e[x[i]], e[y[i]]);
}
bool is_possible(int k)
{
construct(k);
for (int i = 0; i < n; i++)
component[i] = -1;
int last = 0;
for (int i = 0; i < n; i++)
if (component[i] == -1)
dfs(i, last++);
return (n-last) <= k;
}
int rs[MXSIZE];
int findSwapPairs(int nn, int ss[], int _m, int xx[], int yy[], int p[], int q[])
{
n = nn;
s = ss, x = xx, y = yy;
int l = -1, r = _m+1;
while (r - l > 1)
{
int m = l+r>>1;
if (is_possible(m))
r = m;
else
l = m;
}
construct(r);
vector<array<int, 2>> swaps;
for (int i = 0; i < n; i++)
{
while (e[i] != i)
{
swaps.pb({e[i], e[e[i]]});
swap(e[i], e[e[i]]);
}
}
assert(swaps.size() <= r);
for (int i = 0; i < n; i++)
{
rs[s[i]] = i;
e[i] = s[i];
}
for (int i = 0; i < r; i++)
{
swap(e[x[i]], e[y[i]]);
rs[e[x[i]]] = x[i];
rs[e[y[i]]] = y[i];
if (i < swaps.size())
{
p[i] = rs[swaps[i][0]];
q[i] = rs[swaps[i][1]];
swap(e[p[i]], e[q[i]]);
rs[e[p[i]]] = p[i];
rs[e[q[i]]] = q[i];
}
else
{
p[i] = 0;
q[i] = 0;
}
}
return r;
}
컴파일 시 표준 에러 (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... |