#include <vector>
#include "messy.h"
#include "bits/stdc++.h"
using namespace std;
std::vector<int> restore_permutation(int n, int w, int r) {
//add_element("0");
//compile_set();
//check_element("0");
vector<int> p(n);
iota(p.begin(), p.end(), 0);
string t(n, '1');
for (int i = 0; i < n - 1; ++i) {
t[i] = '0';
add_element(t);
}
compile_set();
for (int i = 0; i < n; ++i) {
t[i] = '1';
}
int x = -1, y = -1;
for (int i = 0; i < n && x == -1; ++i) {
t[i] = '0';
if (!check_element(t)) {
x = i;
t[i] = '1';
for (int j = i + 1; j < n; ++j) {
t[j] = '0';
if (check_element(t)) {
y = j;
break;
}
}
}
}
if (x != -1) {
assert(y != -1);
swap(p[x], p[y]);
}
return p;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
212 KB |
n = 8 |
2 |
Correct |
1 ms |
212 KB |
n = 8 |
3 |
Correct |
1 ms |
256 KB |
n = 8 |
4 |
Correct |
1 ms |
212 KB |
n = 8 |
5 |
Correct |
1 ms |
300 KB |
n = 8 |
6 |
Correct |
1 ms |
212 KB |
n = 8 |
7 |
Runtime error |
1 ms |
432 KB |
Execution killed with signal 6 |
8 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
468 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
468 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
468 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
468 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |