이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "messy.h"
using namespace std;
vector<int> restore_permutation(int n, int w, int r) {
srand(20349234);
set<int> pos;
for (int i = 1; i <= n; i++) {
string x(n, '0');
for (int j = 0; j < i; j++)
x[j] = '1';
add_element(x);
pos.insert(i-1);
}
compile_set();
string x(n, '0');
int count = 0;
vector<int> ans(n);
for (int i = 0; i < n; i++) {
set<int> guess = pos;
while (!guess.empty()) {
auto g = next(guess.begin(), rand() % guess.size());
string t = x;
int ind = *g;
t[ind] = '1';
guess.erase(g);
// cout << t << ' ' << x << endl;
count++;
if (check_element(t)) {
ans[ind] = i;
x[ind] = '1';
pos.erase(ind);
break;
}
}
}
// cout << count << endl;
return ans;
}
# | 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... |