Submission #810544

#TimeUsernameProblemLanguageResultExecution timeMemory
810544AndreyUnscrambling a Messy Bug (IOI16_messy)C++14
38 / 100
1 ms340 KiB
#include <vector>
#include<bits/stdc++.h>
#include "messy.h"
using namespace std;

vector<int> restore_permutation(int n, int w, int r) {
    string s = "";
    string t = "";
    for(int i = 0; i < n; i++) {
        s+='1';
        t+='1';
    }
    for(int i = 0; i < n; i++) {
        s[i] = '0';
        add_element(s);
    }
    compile_set();
    vector<int> ans(n);
    for(int i = 0; i < n; i++) {
        for(int j = 0; j < n; j++) {
            if(t[j] != '0') {
                t[j] = '0';
                if(check_element(t)) {
                    ans[j] = i;
                    break;
                }
                t[j] = '1';
            }
        }
    }
    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...