이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include <bits/stdc++.h>
#include "messy.h"
using namespace std;
#define FOR(i, a, b) for (int i = (a); i <= (b); i++)
#define REP(n) FOR(O, 1, (n))
#define f first
#define s second
#define pb push_back
typedef vector<int> vi;
typedef pair<int, int> pii;
typedef vector<pii> vii;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
std::vector<int> restore_permutation(int n, int w, int r) {
vi shuf(n);
FOR(x, 0, n-1) shuf[x] = x;
shuffle(shuf.begin(), shuf.end(), rng);
string s = "";
REP(n) s += "0";
FOR(x, 0, n-1) {
int i = shuf[x];
s[i] = '1';
add_element(s);
}
compile_set();
vi perm(n);
string cur = "";
REP(n) cur += "0";
FOR(y, 0, n-1) {
int i = shuf[y];
//shuffle(shuf.begin(), shuf.end(), rng);
FOR(x, 0, n-1) {
int j = shuf[x];
if (cur[j] == '1') continue;
cur[j] = '1';
bool ok = check_element(cur);
if (ok) {
perm[j] = i;
break;
}
cur[j] = '0';
}
}
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... |