이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <vector>
#include "messy.h"
#define F first
#define S second
#define pii pair<int, int>
#define pb push_back
using namespace std;
typedef long long ll;
typedef long double ld;
const int maxN = 35;
int ans[maxN];
bool mark[maxN];
std::vector<int> restore_permutation(int n, int w, int r) {
string s;
for (int i=0; i<n; i++) s += '0';
for (int i=1; i<=n; i++)
{
s[i - 1] = '1';
add_element(s);
//cout << s << endl;
}
compile_set();
/*
for (int i=0; i<16; i++)
{
string t;
for (int j=0; j<n; j++) t += '0';
for (int j=0; j<4; j++)
if(i & (1 << j)) t[j] = '1';
cout << t << " --> " << check_element(t) << endl;
}*/
for (int i=1; i<=n; i++)
{
string r = "";
for (int c=0; c<n; c++) r += '0';
for (int c=0; c<n; c++)
if(mark[c]) r[c] = '1';
for (int c=0; c<n; c++)
{
if(mark[c]) continue ;
r[c] = '1';
//cout << r << endl;
if(check_element(r)){ ans[c] = i-1; mark[c]=true; break; }
r[c] = '0';
}
}
vector <int> res;
for (int i=0; i<n; i++) res.pb(ans[i]);
return res;
}
# | 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... |