이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef int64_t llo;
#define mp make_pair
#define pb push_back
#define a first
#define b second
//#define endl '\n'
mt19937 rng;
void add_element(string x);
bool check_element(string x);
void compile_set();
//#include "messy.h"
vector<int> ans;
int nn;
void divide(set<int> cur,int ind,int stop,int num){
if(ind==stop){
ans[*(cur.begin())]=num;//*(cur.begin());
return;
}
set<int> cur2;
set<int> cur3;
for(auto j:cur){
string s="";
for(int k=0;k<nn;k++){
if(k==j){
s+="1";
}
else if(cur.find(k)==cur.end()){
s+="1";
}
else{
s+="0";
}
}
// cout<<s<<":"<<endl;
if(check_element(s)){
cur2.insert(j);
}
else{
cur3.insert(j);
}
}
divide(cur2,ind+1,stop,num+(1<<ind));
divide(cur3,ind+1,stop,num);
}
std::vector<int> restore_permutation(int n, int w, int r) {
nn=n;
int x=3;
for(int i=0;i<n;i++){
ans.pb(0);
}
if(n==32){
x=5;
}
if(n==128){
x=7;
}
if(n==4){
x=2;
}
int val[n];
for(int i=0;i<n;i++){
val[i]=0;
}
for(int i=0;i<x;i++){
for(int j=0;j<n;j++){
if((j&(1<<i))){
int xx=(1<<i)-1;
string s="";
for(int k=0;k<n;k++){
if(k==j){
s+="1";
}
else if(val[k]!=val[j]){
s+="1";
}
else{
s+="0";
}
}
add_element(s);
// cout<<s<<endl;
}
}
for(int j=0;j<n;j++){
val[j]+=(j&(1<<i));
}
}
compile_set();
set<int> cur;
for(int i=0;i<n;i++){
cur.insert(i);
}
divide(cur,0,x,0);
// check_element("0");
return ans;
}
/*int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
return 0;
}
*/
/*
g++ -o aa -O2 messy.cpp grader.cpp -std=c++14
*/
/*
4 16 16
2 1 3 0
*/
컴파일 시 표준 에러 (stderr) 메시지
messy.cpp: In function 'std::vector<int> restore_permutation(int, int, int)':
messy.cpp:72:10: warning: unused variable 'xx' [-Wunused-variable]
int xx=(1<<i)-1;
^~
# | 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... |