This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "prison.h"
#include <bits/stdc++.h>
using namespace std;
#define sz(x) (int)x.size()
#define pb push_back
void rec(int idx, vector<int> elements, int n, vector<vector<int>>& st) {
if(elements.empty()) return;
while(sz(st) <= idx) st.pb(vector<int>(n + 1));
int p = ((idx + 2) / 3) % 2;
st[idx][0] = p;
vector<int> A, B, C;
for(int j = 1; j <= n; ++j) {
if(j > elements.back()) st[idx][j] = (!p ? -2 : -1);
if(j < elements[0]) st[idx][j] = (!p ? -1 : -2);
}
st[idx][elements[0]] = (!p ? -1 : -2);
if(sz(elements) > 1) st[idx][elements.back()] = (!p ? -2 : -1);
elements.erase(elements.begin());
if(sz(elements)) elements.pop_back();
for(int i = 0; i < sz(elements) / 3; ++i) A.push_back(elements[i]);
for(int i = sz(elements) / 3; i < sz(elements) / 3 * 2; ++i) B.push_back(elements[i]);
for(int i = sz(elements) / 3 * 2; i < sz(elements); ++i) C.push_back(elements[i]);
if(sz(C) > sz(A)) swap(A, C);
int pp = (idx + 2) / 3 * 3;
for(auto x: A) st[idx][x] = pp + 1;
for(auto x: B) st[idx][x] = pp + 2;
for(auto x: C) st[idx][x] = pp + 3;
rec(pp + 1, A, n, st);
rec(pp + 2, B, n, st);
rec(pp + 3, C, n, st);
}
std::vector<std::vector<int>> devise_strategy(int N) {
vector<int> elements(N);
iota(elements.begin(), elements.end(), 1);
vector<vector<int>> st;
rec(0, elements, N, st);
return st;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |