# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
229828 | achibasadzishvili | Unscrambling a Messy Bug (IOI16_messy) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll int
#define f first
#define s second
#define pb push_back
using namespace std;
#include "messy.h"
vector<int> restore_permutation(int n, int w, int r){
srand(time(123123123));
string s = "";
for(int i=1; i<=n; i++)
s += '0';
for(int i=0; i<n; i++){
s[i] = '1';
add_element(s);
}
compile_set();
string a = "";
for(int i=0; i<n; i++)
a += '0';
vector<ll>p;
for(int i=0; i<n; i++)
p.pb(0);
for(int i=0; i<n; i++){
vector<ll>k;
for(int j=0; j<n; j++)
if(a[j] == '0')
k.pb(j);
random_shuffle(k.begin() , k.end());
random_shuffle(k.begin() , k.end());
random_shuffle(k.begin() , k.end());
random_shuffle(k.begin() , k.end());
random_shuffle(k.begin() , k.end());
for(int ji=0; ji<n; ji++){
int j = k[ji];
if(a[j] == '0'){
a[j] = '1';
if(check_element(a)){
//cout << i << " <-> " << j << '\n';
p[j] = i;
break;
}
a[j] = '0';
}
}
}
return p;
}