이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "messy.h"
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> pii;
#define debug(x) {cerr<<#x<<"="<<x<<"\n";}
#define debug2(x, y) {cerr<<#x<<", "<<#y<<" = "<<x<<", "<<y<<"\n";}
#define debugp(p) {cerr<<#p<<"={"<<p.first<<", "<<p.second<<"}\n";}
#define pb push_back
#define all(x) x.begin(), x.end()
const int inf=1000001000;
const int N=128;
vector<int> restore_permutation(int n, int w, int r){
string S, all0;
for (int i=0; i<n; i++) all0+='0';
vector<int> A(n, 0);
for (int bit=0; (1<<bit)<n; bit++){
for (int i=0; i<n; i++) if (i&(1<<bit)){
S=all0;
S[i]='1';
if (bit){
for (int j=0; j<n; j++){
int x=(i&((1<<bit)-1)), y=(j&((1<<bit)-1));
if ((x^y)+1==(1<<bit)) S[j]='1';
}
}
add_element(S);
// debug(S)
}
}
// debug("compile")
compile_set();
for (int bit=0; (1<<bit)<n; bit++){
for (int i=0; i<n; i++){
S=all0;
S[i]='1';
if (bit){
for (int j=0; j<n; j++){
int x=(A[i]&((1<<bit)-1)), y=(A[j]&((1<<bit)-1));
if ((x^y)+1==(1<<bit)) S[j]='1';
}
}
// cerr<<bit<<" "<<i<<" "<<S<<"\n";
if (check_element(S)) A[i]|=(1<<bit);
}
// cerr<<"A: ";for (int i=0; i<n; i++) cerr<<A[i]<<" \n"[i==n-1];
}
return A;
}
# | 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... |