제출 #825120

#제출 시각아이디문제언어결과실행 시간메모리
825120LittleCube죄수들의 도전 (IOI22_prison)C++17
90 / 100
9 ms1068 KiB
#include "prison.h"
#include <bits/stdc++.h>
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define F first
#define S second
using namespace std;

const int B = 2;
int bag[30];

struct state
{
  int l, r, a, b;
};

vector<state> spaces[30];
vector<vector<int>> devise_strategy(int N)
{
  vector<vector<int>> sol;
  bag[0] = 1;
  spaces[0] = {state{1, N, 1, N}};
  int x = 0;
  for (int j = 0; j <= x; j++)
  {
    sol.emplace_back(vector<int>(N + 1, 0));
    sol[j][0] = bag[j] - 1;
    for (auto &[l, r, a, b] : spaces[j])
    {
      for (int k = l; k <= a; k++)
        sol[j][k] = -bag[j];
      for (int k = b; k <= r; k++)
        sol[j][k] = -(bag[j] ^ 3);
      l = a + 1, r = b - 1;
    }
    for (auto [l, r, a, b] : spaces[j])
    {
      if (r < l)
        continue;
      int h = (l + r) / 2;
      int p = (j + 1) / 2 * 2 + 1;
      bag[p] = bag[p + 1] = bag[j] ^ 3;
      if (l == r)
      {
        sol[j][l] = p;
        spaces[p].emplace_back(state{a, b, l, r});
        x = max(x, p);
      }
      else
      {
        spaces[p].emplace_back(state{a, b, l, h});
        for (int k = l; k <= h; k++)
          sol[j][k] = p;
        spaces[p + 1].emplace_back(state{a, b, h + 1, r});
        for (int k = h + 1; k <= r; k++)
          sol[j][k] = p + 1;
        x = max(x, p + 1);
      }
    }
  }
  // for (int i = 0; i <= x; i++)
  // {
  //   cout << sol[i][0] << " |";
  //   for (int j = 1; j <= N; j++)
  //     cout << ' ' << sol[i][j];
  //   cout << '\n';
  // }
  cerr << x << '\n';
  return sol;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...