이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include <cstdio>
#include <string>
#include <set>
#include <cstdlib>
#include <iostream>
#include "messy.h"
using namespace std;
#define all(x) (x).begin(), (x).end()
#define forn(i, n) for (int (i) = 0; (i) < (n); (i)++)
void build(int l, int r, int n)
{
if (l + 1 == r)
{
return;
}
int m = (l + r) / 2;
for (int i = l; i < m; i++)
{
string s(n, '1');
for (int j = l; j < r; j++)
s[j] = '0';
s[i] = '1';
add_element(s);
}
build(l, m, n);
build(m, r, n);
}
void restore(int n, vector<int> sc, int l, int r, vector<int> &ans)
{
if (l + 1 == r)
{
ans[l] = sc[0];
return;
}
string s(n, '1');
for (auto e : sc)
s[e] = '0';
vector<int> on, off;
for (auto e : sc)
{
s[e] = '1';
if (check_element(s))
on.push_back(e);
else
off.push_back(e);
s[e] = '0';
}
int m = (l + r) / 2;
restore(n, on, l, m, ans);
restore(n, off, m, r, ans);
}
vector<int> restore_permutation(int n, int w, int r)
{
build(0, n, n);
compile_set();
vector<int> ans(n);
vector<int> sc;
for (int i = 0; i < n; i++) sc.push_back(i);
restore(n, sc, 0, n, ans);
vector<int> p(n);
for (int i = 0; i < n; i++)
p[ans[i]] = i;
return p;
}
# | 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... |