이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "messy.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long int;
typedef vector<ll> vi;
typedef vector<vi> vvi;
typedef pair<ll,ll> ii;
typedef vector<ii> vii;
typedef vector<vii> vvii;
ll min(ll x, ll y){
return ((x < y) ? x : y);
}
ll max(ll x, ll y){
return ((x > y) ? x : y);
}
/*
namespace helper {
set<string> set_;
bool compiled = false;
int n;
vector<int> p;
int w;
int r;
int read_int() {
int x;
cin >> x;
return x;
}
}
using namespace helper;
// A convenience function.
int get_p(int i) {
int ret = p[i];
return ret;
}
int main() {
n = read_int();
w = read_int();
r = read_int();
p = vector<int>(n);
for (int i = 0; i < n; i++) {
p[i] = read_int();
}
vector<int> answer = restore_permutation(n, w, r);
if (answer.size() != n) {
printf("WA\n");
return 0;
}
printf("%d", answer[0]);
for (int i = 1; i < n; i++) {
printf(" %d", answer[i]);
}
printf("\n");
return 0;
}
void wa() {
printf("WA\n");
exit(0);
}
bool check(const string& x) {
if ((int)x.length() != n) {
return false;
}
for (int i = 0; i < n; i++) {
if (x[i] != '0' && x[i] != '1') {
return false;
}
}
return true;
}
void add_element(string x) {
cout << "add_element: " << x << endl;
if (--w < 0 || compiled || !check(x)) {
wa();
}
set_.insert(x);
}
bool check_element(string x) {
if (--r < 0 || !compiled || !check(x)) {
wa();
}
bool res = set_.count(x);
cout << "check_element: " << x << " " << res << endl;
return res;
}
void compile_set() {
if (compiled) {
wa();
}
compiled = true;
set<string> compiledSet;
string compiledElement = string(n, ' ');
for (set<string>::iterator it = set_.begin(); it != set_.end(); it++) {
string s = *it;
for (int i = 0; i < n; i++) {
compiledElement[i] = s[get_p(i)];
}
compiledSet.insert(compiledElement);
}
set_ = compiledSet;
}
//*/
std::vector<int> restore_permutation(int n, int w, int r) {
vi anchors;
ll lg = log2(n);
for (ll i = 0; lg > i; i++){
for (ll j = 0; n > j; j++){
ll bm = (1 << i);
if ((j & bm) == 0) continue;
//cout << j << ' ' << bm << ": " << (j & bm) <<endl;
string s;
s.assign(n,'0');
for (auto i: anchors) s[i] = '1';
s[j] = '1';
add_element(s);
}
if (i != lg-1){
ll cur_anch = 1;
cur_anch <<= i;
string s;
s.assign(n,'1');
s[cur_anch] = '0';
add_element(s);
anchors.push_back(cur_anch);
}
}
compile_set();
vi isAnchor;
isAnchor.assign(n,0);
for (ll i = 0; n > i; i++){
string s;
s.assign(n,'1');
s[i] = '0';
bool res = check_element(s);
if (res) isAnchor[i] = 1;
}
vi cur_anchors;
vi isFoundAnchor;
isFoundAnchor.assign(n,0);
vector<int> p; p.assign(n,0);
for (ll i = 0; lg > i; i++){
ll found_anchor;
for (ll j = 0; n > j; j++){
if (isFoundAnchor[j]) continue;
string s; s.assign(n,'0');
s[j] = '1';
for (auto k: cur_anchors) s[k] = '1';
bool res = check_element(s);
if (res){
p[j] += (1 << i);
if (isAnchor[j])found_anchor = j;
}
}
cur_anchors.push_back(found_anchor);
isFoundAnchor[found_anchor] = 1;
}
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... |