This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <vector>
#include "messy.h"
#include <bits/stdc++.h>
using namespace std;
std::vector<int> restore_permutation(int n, int w, int r) {
vector<int> p(n);
string s(n, '0');
// cout << s << endl;
for (int i = 0; i < n; i++) {
p[i] = i;
s[i] = '1';
add_element(s);
}
compile_set();
s = string(n, '0');
for (int i = 0; i < n; i++) {
s[i] = '1';
if (!check_element(s)) {
s[i] = '0';
for (int j = i + 1; j < n; j++) {
s[j] = '1';
if (check_element(s)) {
swap(p[i], p[j]);
return p;
}
s[j] = '0';
}
}
}
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... |