이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include "messy.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vi = vector<int>;
#define REP(i,n) for (int i = 0; i < n; i++)
#define all(x) (x).begin(), (x).end()
#define trav(x) for (auto &a : x)
int n;
vi perm; // from where?
vi to;
void prep_learn(int am) {
vector<char> st(n, '0');
REP(i,am) {
st[i] = '1';
add_element(string(all(st)));
}
}
void learn_brute(int am) {
vector<char> st(n, '0');
REP(i,am) {
REP(j,n) {
if (st[j] == '1') continue;
st[j] = '1';
if (check_element(string(all(st)))) {
to[i] = j;
perm[j] = i;
break;
} else st[j] = '0';
}
}
}
std::vector<int> restore_permutation(int n_, int w, int r) {
n = n_;
prep_learn(n);
compile_set();
perm = vi(n,-1); to = vi(n,-1);
learn_brute(n);
return perm;
}
# | 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... |