제출 #50868

#제출 시각아이디문제언어결과실행 시간메모리
50868zetapiUnscrambling a Messy Bug (IOI16_messy)C++14
20 / 100
3 ms384 KiB
#include "messy.h"
#include "bits/stdc++.h"
 
using namespace std;
 
#define pb push_back
 
const int MAX=1e5;
 
vector<int> restore_permutation(int n, int w, int r) 
{
    /*add_element("0");
    compile_set();
    check_element("0");*/
    string X="";
    vector<int> res;
    for(int A=0;A<n;A++)
    	res.pb(A);
    for(int A=0;A<n;A++)
    	X+="0";
    for(int A=0;A<n;A++)
    {
    	X[A]='1';
    	add_element(X);
    }
    compile_set();
    for(int A=0;A<n;A++)
    	X[A]='0';
    for(int A=0;A<n;A++)
    {
    	for(int B=0;B<n;B++)
    	{
    		if(X[B]=='1')
    			continue;
    		X[B]='1';
    		if(check_element(X))
    		{
    			res[A]=B;
    			break;
    		}
    		X[B]='0';
    	}
    }
    return res;
}
#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...