이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "messy.h"
#define all(fl) fl.begin(),fl.end()
#define pb push_back
#define fi first
#define se second
#define for1(i,j,k) for(int i=j;i<=k;i++)
#define for2(i,j,k) for(int i=j;i>=k;i--)
#define for3(i,j,k,l) for(int i=j;i<=k;i+=l)
#define lb lower_bound
#define ub upper_bound
#define sz(a) (int)a.size()
#define pii pair<int,int>
#define pli pair<long long,int>
#define gcd __gcd
#define lcm(x,y) x*y/__gcd(x,y)
#define lastbit(i) __builtin_ctz(i)
using namespace std;
int n;
void add(int l,int r){
if (l>=r)return;
string temp;
for1(i,0,n-1){
temp.pb('1');
}
for1(j,l,r){
temp[j]='0';
}
int mid=(l+(r-l+1)/2-1);
for1(j,l,mid){
temp[j]='1';
add_element(temp);
temp[j]='0';
}
add(l,mid);
add(mid+1,r);
}
int per[128];
int turn[128];
void solve(int l,int r,vector<int>can){
if (l==r){
per[can[0]]=l;
return;
}
memset(turn,0,sizeof(turn));
for(auto v:can){
turn[v]=1;
}
string temp;
for1(i,0,n-1){
if (turn[i])temp.pb('0');
else temp.pb('1');
}
vector<int>cl,cr;
for(auto v:can){
temp[v]='1';
bool fl=check_element(temp);
temp[v]='0';
if (fl){
cl.pb(v);
}
else {
cr.pb(v);
}
}
int mid=(l+(r-l+1)/2-1);
solve(l,mid,cl);
solve(mid+1,r,cr);
}
vector<int>restore_permutation(int N,int w,int r){
n=N;
add(0,n-1);
compile_set();
vector<int>can;
for1(i,0,n-1){
can.pb(i);
}
solve(0,n-1,can);
vector<int>ans;
for1(i,0,n-1){
ans.pb(per[i]);
}
return ans;
}
# | 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... |