이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "messy.h"
#define int long long
using namespace std;
vector<signed> restore_permutation(signed n, signed w, signed r) {
string ss(n,'0');
for(int i = 0; i < n-1; i ++){
ss[i] = '1'; add_element(ss);
}
compile_set();
vector<int> p(n); //where it goes to
ss = string(n,'0');
for(int i = 0; i < n; i ++){
for(int j = 0; j < n; j ++){
if(ss[j] == '1') continue;
ss[j] = '1';
if(check_element(ss)){ p[i] = j; break; }
ss[j] = '0';
}
}
for(int j = 0; j < n; j ++){
if(ss[j] == '0'){ p[n-1] = j; break; }
}
vector<signed> ans(n);
for(int i = 0; i < n; i ++) ans[p[i]] = i;
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... |