# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
135347 | TuGSGeReL | 정렬하기 (IOI15_sorting) | C++17 | 2 ms | 476 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sorting.h"
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
using namespace __gnu_pbds;
#define ll long long
#define mp make_pair
#define pub push_back
#define pob pop_back()
#define ss second
#define ff first
#define mt make_tuple
#define pof pop_front()
#define fbo find_by_order
#define ook order_of_key
#define lb lower_bound
#define ub upper_bound
typedef tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> indexed_set;
using pll = pair <ll, ll>;
using pii = pair <int, int>;
int aiz[200001], n, x[600001], y[600001], s[200001], dta[200001];
vector <pii> ans;
bool can(int k)
{
ans.clear();
for (int i = 0; i < n; i++)
aiz[i] = s[i];
for (int i = 0; i < k; i++)
swap(aiz[x[i]], aiz[y[i]]);
for (int i = 0; i < n; i++)
dta[aiz[i]] = i;
int p = 0;
for (int i = 0; i < n; i++)
{
if ( aiz[i] != i )
{
p++;
ans.pub(mp(dta[i], dta[aiz[i]]));
swap(aiz[dta[i]], aiz[dta[aiz[i]]]);
swap(dta[i], dta[aiz[i]]);
}
}
if ( p <= k )
return 1;
return 0;
}
int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
int l = 0, r = M, n = N;
for (int i = 0; i < M; i++)
{
x[i] = X[i];
y[i] = Y[i];
}
for (int i = 0; i < n; i++)
s[i] = S[i];
while (l + 1 < r)
{
int mid = (l + r) / 2;
if ( can(mid) )
r = mid;
else
l = mid;
}
if ( can(l) )
{
for (int i = 0; i < ans.size(); i++)
{
P[i] = ans[i].ff;
Q[i] = ans[i].ss;
}
return l;
} else {
can(r);
for (int i = 0; i < ans.size(); i++)
{
P[i] = ans[i].ff;
Q[i] = ans[i].ss;
}
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... |