# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1074157 | beaconmc | Unscrambling a Messy Bug (IOI16_messy) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "messy.h"
#include <bits/stdc++.h>
typedef long long ll;
#define FOR(i,x,y) for(ll i=x; i<y; i++)
#define FORNEG(i,x,y) for(lli = x; i>y; i--)
using namespace std;
ll N;
string idk;
void encode(ll a, ll b){
if (a==b) return;
string temp = idk;
FOR(i,0,N){
if (!(a<=i && i<=b)) temp[i] = '1';
}
ll mid = (a+b)/2;
FOR(i,a,mid){
temp[i] = '1';
add_element(temp);
temp[i] = '0';
}
encode(a, mid);
encode(mid+1, b;);
}
vector<ll> solve(set<ll> a){
if (a.size() == 1){
vector<ll> ans;
for (auto&i : a) ans.push_back(i);
return ans;
}
string temp = idk;
set<ll> temp1, temp2;
FOR(i,0,N) if (a.count(i)==0) temp[i] = '1';
for (auto&i : a){
temp[i] = '1';
ll lol = check_element(temp);
if (lol) temp1.insert(i);
else temp2.insert(i);
temp[i] = '0';
}
vector<ll> ans1 = solve(temp1);
vector<ll> ans2 = solve(temp2);
vector<ll> ans;
for (auto&i : ans1) ans.push_back(i);
for (auto&i : ans2) ans.push_back(i);
return ans;
}
std::vector<int> restore_permutation(int n, int w, int r) {
N = n;
FOR(i,0,n) idk += '0';
encode(0, n-1);
compile_set();
set<ll> temp;
FOR(i,0,n) temp.insert(i);
return vector<int> decode(temp);
}