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 <bits/stdc++.h>
#include "messy.h"
using namespace std;
vector<int> restore_permutation(int n, int w, int r) {
	for (int i = 0; i < n; ++i) {
		string s = "";
		for (int j = 0; j < n; ++j) {
			if (j <= i) s+= "1";
			else s += "0";
		}
		add_element(s);
		//cout << s << endl;
	}
	compile_set();
	vector<int> p(n);
	string got = "";
	for (int i = 0; i < n; ++i) got += "0";
	for (int i = 0; i < n; ++i) {
		for (int j = 0; j < n; ++j) {
			if(got[j] == '1') continue;
			got[j] = '1';
			bool r = check_element(got);
			if (r) {
				//cout << got << "\n";
				p[j] = i;
				break;
			} else got[j] = '0';
		}
	}
	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... |