| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 427756 | SuhaibSawalha1 | Unscrambling a Messy Bug (IOI16_messy) | C++17 | 2 ms | 332 KiB |
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 "messy.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> restore_permutation(int n, int w, int r) {
vector<int> p(n);
for (int i = 1; i <= n; ++i) {
add_element(string(i, '1') + string(n - i, '0'));
}
compile_set();
string s = string(n, '0');
vector<int> ord(n);
iota(ord.begin(), ord.end(), 0);
for (int i = 0; i < n; ++i) {
shuffle(ord.begin(), ord.end(), mt19937(random_device()()));
for (int j : ord) {
if (s[j] == '0') {
s[j] = '1';
if (check_element(s)) {
p[j] = i;
break;
}
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... | ||||
