# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
121355 | Charis02 | Unscrambling a Messy Bug (IOI16_messy) | C++14 | 18 ms | 512 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 <vector>
#include <algorithm>
#include <iostream>
#include <set>
#include "messy.h"
#define rep(i,a,b) for(int i = a;i < b;i++)
using namespace std;
/*
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;
}
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) {
if (--w < 0 || compiled || !check(x)) {
// cout << x << endl;
wa();
}
set_.insert(x);
}
bool check_element(string x) {
if (--r < 0 || !compiled || !check(x)) {
wa();
}
return set_.count(x);
}
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;
}
*/
vector < int > result(230);
void init(int low,int high,int n)
{
if(low == high)
return;
int mid = (low+high)/2;
string s = "";
rep(i,0,n)
s += "1";
rep(i,low,high+1)
s[i] = '0';
rep(i,low,mid+1)
{
s[i] = '1';
// cout << low << " " << high << " " << s << endl;
add_element(s);
s[i] = '0';
}
init(low,mid,n);
init(mid+1,high,n);
return;
}
void solve(int low,int high,int n,vector < int > pos)
{
if(low == high)
{
result[low] = pos[0];
return;
}
int mid = (low+high)/2;
vector < int > posl;
vector < int > posr;
string s = "";
rep(i,0,n)
s+="1";
rep(i,0,pos.size())
{
s[pos[i]] = '0';
}
rep(i,0,pos.size())
{
int x = pos[i];
s[x] = '1';
// cout << x << " " << s << " " << check_element(s) << endl;
if(check_element(s))
posl.push_back(x);
else
posr.push_back(x);
s[x] = '0';
}
solve(low,mid,n,posl);
solve(mid+1,high,n,posr);
return;
}
std::vector<int> restore_permutation(int n, int w, int r)
{
init(0,n-1,n);
compile_set();
vector < int > v;
rep(i,0,n)
v.push_back(i);
result.resize(n);
solve(0,n-1,n,v);
vector < int > ans = result;
rep(i,0,result.size())
ans[result[i]] = i;
return ans;
}
/*
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;
}
*/
Compilation message (stderr)
# | 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... |