Submission #1121758

#TimeUsernameProblemLanguageResultExecution timeMemory
1121758vjudge1Unscrambling a Messy Bug (IOI16_messy)C++17
20 / 100
1 ms508 KiB
#include "messy.h"
#include <bits/stdc++.h>
using namespace std;

vector<int> restore_permutation(int n, int w, int r)
{
    vector<int> p(n);
    add_element("10000000");
    add_element("11000000");
    add_element("11100000");
    add_element("11110000");
    add_element("11111000");
    add_element("11111100");
    add_element("11111110");
    add_element("11111111");
    compile_set();
    string s(n,'0');
    string t;
    for (int i = 0; i < n; ++i)
    {
        for (int j = 0; j < n; ++j)
        {
            if (s[j] != '1')
            {
                t = s;
                t[j] = '1';
                if (check_element(t))
                {
                    p[i] = j;
                    s = t;
                    break;
                }
            }
        }
    }
    vector<int>ans(n);
    for (int i = 0; i < n; ++i)
    {
        ans[p[i]] = i;
    }
    return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...