This documentation is automatically generated by online-judge-tools/verification-helper
#include "combinatorial_opt/simplex.hpp"
本実装のテクニックの大部分は kopricky さんの実装 [2] を参考に書かれたものです.
$\mathbf{A} \mathbf{x} \le \mathbf{b}, \ \mathbf{x} \ge \mathbf{0}$ のもと $\mathbf{c}^T \mathbf{x}$ を最大化.
解きたい問題に実行可能解が存在するか,また解が有限の値に収まるかは自明ではない.この状況に効率的に対処するために,(カジュアルに $\infty$ が登場して全く厳密な表現ではないが)もとの問題を解く代わりに
$\displaystyle
\mathbf{M} = \begin{pmatrix}
-\mathbf{A} & \mathbf{1} & \mathbf{b} \newline
\mathbf{c}^\top & -\infty & 0
\end{pmatrix}, \quad
\mathbf{x}’ = \begin{pmatrix} \mathbf{x} \newline\ x_{N + 1} \newline\ 1
\end{pmatrix}
$
とおいて, $\mathbf{M} \mathbf{x}’$ の最終要素以外の全ての要素が非負という条件のもと $\mathbf{M} \mathbf{x}’$ の最終要素を最大化する問題を解くことにする.$x_{N + 1}$ の値を十分大きくすることでこの問題には必ず実行可能解が存在することに注意.また本実装では行列を二行拡張し,目的関数の値を上位・下位の二桁の位取りで記述することで無限大を表現している.最終的に $x_{N + 1} > 0$ ならば解は存在しない.
本問題は,$N$ 個の独立変数 $\mathbf{x} = [x_1, \dots, x_N]$ と $M$ 個の従属変数 $\mathbf{y} = [y_1, \dots, y_M], \ y_i = f_i(\mathbf{x})$, $f_i$ はアフィン関数,があって,$\mathbf{x} \ge 0, \ \mathbf{y} \ge 0$ のもとでの何らかのアフィン関数 $g(\mathbf{x})$ の最大化問題とみなせる.このとき,$x_j$ と $y_i$ は対称的な関係にあるから,適宜 $x_j$ と $y_i$ の要素を交換し,別の座標系 $[x_1, \dots, x_{j - 1}, y_i, x_{j + 1}, \dots, x_N]$ に乗り換えてしまっても大丈夫そうである($N$ 次元 Euclid 空間という多様体に,様々な局所座標が入っているということ).最大値を求めるのに都合の良い座標系へと次々に乗り換えていく(座標系の原点が,実行可能領域である多面体の特定の頂点に対応する)というのが単体法のやっていることである.
ある時点での独立変数を $\mathbf{x} = [x_1, \dots, x_j, \dots, x_N]$,従属変数を $\mathbf{y} = [y_1, \dots, y_i, \dots, y_M]$ とおいて,$\mathbf{y} = \mathbf{M} \mathbf{x}$ と書けるとする(定数項は適宜ベクトルを拡張して表現したものとする). 簡単のため,非基底変数 $x_N$ と基底変数 $y_M$ を取り替えるとする.これを行うには,$\mathbf{y}’ = [y_1, \dots, y_{M - 1}, x_N], \ \mathbf{x}’ = [x_1, \dots, x_{N - 1}, y_M]$ として,$\mathbf{y}’ = \mathbf{M}’ \mathbf{x}’$ をみたす $\mathbf{M}’$ を求めればよい.これは,もともと $\mathbf{M}$ が
$\displaystyle
\mathbf{M} =
\begin{pmatrix}
\mathbf{A} & \mathbf{b} \newline
\mathbf{c}^\top & d
\end{pmatrix}
$
と書けていたとすると,
$\displaystyle
\mathbf{M}’ =
\begin{pmatrix}
\mathbf{A} - \frac{\mathbf{b}\mathbf{c}^\top}{d} & \frac{\mathbf{b}}{d} \newline
-\frac{\mathbf{c}^\top}{d} & \frac{1}{d}
\end{pmatrix}
$
と書き下せる.
#pragma once
#include <algorithm>
#include <chrono>
#include <cmath>
#include <numeric>
#include <random>
#include <vector>
// Maximize cx s.t. Ax <= b, x >= 0
// Implementation idea: https://kopricky.github.io/code/Computation_Advanced/simplex.html
// Refer to https://hitonanode.github.io/cplib-cpp/combinatorial_opt/simplex.hpp
template <typename Float = double, int DEPS = 30, bool Randomize = true> struct Simplex {
const Float EPS = Float(1.0) / (1LL << DEPS);
int N, M;
std::vector<int> shuffle_idx;
std::vector<int> idx;
std::vector<std::vector<Float>> mat;
int i_ch, j_ch;
private:
void _initialize(const std::vector<std::vector<Float>> &A, const std::vector<Float> &b,
const std::vector<Float> &c) {
N = c.size(), M = A.size();
mat.assign(M + 2, std::vector<Float>(N + 2));
i_ch = M;
for (int i = 0; i < M; i++) {
for (int j = 0; j < N; j++) mat[i][j] = -A[i][j];
mat[i][N] = 1, mat[i][N + 1] = b[i];
if (mat[i_ch][N + 1] > mat[i][N + 1]) i_ch = i;
}
for (int j = 0; j < N; j++) mat[M][j] = c[j];
mat[M + 1][N] = -1;
idx.resize(N + M + 1);
std::iota(idx.begin(), idx.end(), 0);
}
inline Float abs_(Float x) noexcept { return x > -x ? x : -x; }
void _solve() {
std::vector<int> jupd;
for (nb_iter = 0, j_ch = N;; nb_iter++) {
if (i_ch < M) {
std::swap(idx[j_ch], idx[i_ch + N + 1]);
mat[i_ch][j_ch] = Float(1) / mat[i_ch][j_ch];
jupd.clear();
for (int j = 0; j < N + 2; j++) {
if (j != j_ch) {
mat[i_ch][j] *= -mat[i_ch][j_ch];
if (abs_(mat[i_ch][j]) > EPS) jupd.push_back(j);
}
}
for (int i = 0; i < M + 2; i++) {
if (abs_(mat[i][j_ch]) < EPS or i == i_ch) continue;
for (auto j : jupd) mat[i][j] += mat[i][j_ch] * mat[i_ch][j];
mat[i][j_ch] *= mat[i_ch][j_ch];
}
}
j_ch = -1;
for (int j = 0; j < N + 1; j++) {
if (j_ch < 0 or idx[j_ch] > idx[j]) {
if (mat[M + 1][j] > EPS or (abs_(mat[M + 1][j]) < EPS and mat[M][j] > EPS))
j_ch = j;
}
}
if (j_ch < 0) break;
i_ch = -1;
for (int i = 0; i < M; i++) {
if (mat[i][j_ch] < -EPS) {
if (i_ch < 0) {
i_ch = i;
} else if (mat[i_ch][N + 1] / mat[i_ch][j_ch] - mat[i][N + 1] / mat[i][j_ch] <
-EPS) {
i_ch = i;
} else if (mat[i_ch][N + 1] / mat[i_ch][j_ch] - mat[i][N + 1] / mat[i][j_ch] <
EPS and
idx[i_ch] > idx[i]) {
i_ch = i;
}
}
}
if (i_ch < 0) {
is_infty = true;
break;
}
}
if (mat[M + 1][N + 1] < -EPS) {
infeasible = true;
return;
}
x.assign(N, 0);
for (int i = 0; i < M; i++) {
if (idx[N + 1 + i] < N) x[idx[N + 1 + i]] = mat[i][N + 1];
}
ans = mat[M][N + 1];
}
public:
Simplex(std::vector<std::vector<Float>> A, std::vector<Float> b, std::vector<Float> c) {
is_infty = infeasible = false;
if (Randomize) {
std::mt19937 rng(std::chrono::steady_clock::now().time_since_epoch().count());
std::vector<std::pair<std::vector<Float>, Float>> Abs;
for (unsigned i = 0; i < A.size(); i++) Abs.emplace_back(A[i], b[i]);
std::shuffle(Abs.begin(), Abs.end(), rng);
A.clear(), b.clear();
for (auto &&Ab : Abs) A.emplace_back(Ab.first), b.emplace_back(Ab.second);
shuffle_idx.resize(c.size());
std::iota(shuffle_idx.begin(), shuffle_idx.end(), 0);
std::shuffle(shuffle_idx.begin(), shuffle_idx.end(), rng);
auto Atmp = A;
auto ctmp = c;
for (unsigned i = 0; i < A.size(); i++) {
for (unsigned j = 0; j < A[i].size(); j++) A[i][j] = Atmp[i][shuffle_idx[j]];
}
for (unsigned j = 0; j < c.size(); j++) c[j] = ctmp[shuffle_idx[j]];
}
_initialize(A, b, c);
_solve();
if (Randomize and x.size() == c.size()) {
auto xtmp = x;
for (unsigned j = 0; j < c.size(); j++) x[shuffle_idx[j]] = xtmp[j];
}
}
unsigned nb_iter;
bool is_infty;
bool infeasible;
std::vector<Float> x;
Float ans;
static void
dual(std::vector<std::vector<Float>> &A, std::vector<Float> &b, std::vector<Float> &c) {
const int n = b.size(), m = c.size();
std::vector<std::vector<Float>> At(m, std::vector<Float>(n));
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j) At[j][i] = -A[i][j];
}
A = At;
for (int i = 0; i < n; ++i) b[i] = -b[i];
for (int j = 0; j < m; ++j) c[j] = -c[j];
b.swap(c);
}
};
#line 2 "combinatorial_opt/simplex.hpp"
#include <algorithm>
#include <chrono>
#include <cmath>
#include <numeric>
#include <random>
#include <vector>
// Maximize cx s.t. Ax <= b, x >= 0
// Implementation idea: https://kopricky.github.io/code/Computation_Advanced/simplex.html
// Refer to https://hitonanode.github.io/cplib-cpp/combinatorial_opt/simplex.hpp
template <typename Float = double, int DEPS = 30, bool Randomize = true> struct Simplex {
const Float EPS = Float(1.0) / (1LL << DEPS);
int N, M;
std::vector<int> shuffle_idx;
std::vector<int> idx;
std::vector<std::vector<Float>> mat;
int i_ch, j_ch;
private:
void _initialize(const std::vector<std::vector<Float>> &A, const std::vector<Float> &b,
const std::vector<Float> &c) {
N = c.size(), M = A.size();
mat.assign(M + 2, std::vector<Float>(N + 2));
i_ch = M;
for (int i = 0; i < M; i++) {
for (int j = 0; j < N; j++) mat[i][j] = -A[i][j];
mat[i][N] = 1, mat[i][N + 1] = b[i];
if (mat[i_ch][N + 1] > mat[i][N + 1]) i_ch = i;
}
for (int j = 0; j < N; j++) mat[M][j] = c[j];
mat[M + 1][N] = -1;
idx.resize(N + M + 1);
std::iota(idx.begin(), idx.end(), 0);
}
inline Float abs_(Float x) noexcept { return x > -x ? x : -x; }
void _solve() {
std::vector<int> jupd;
for (nb_iter = 0, j_ch = N;; nb_iter++) {
if (i_ch < M) {
std::swap(idx[j_ch], idx[i_ch + N + 1]);
mat[i_ch][j_ch] = Float(1) / mat[i_ch][j_ch];
jupd.clear();
for (int j = 0; j < N + 2; j++) {
if (j != j_ch) {
mat[i_ch][j] *= -mat[i_ch][j_ch];
if (abs_(mat[i_ch][j]) > EPS) jupd.push_back(j);
}
}
for (int i = 0; i < M + 2; i++) {
if (abs_(mat[i][j_ch]) < EPS or i == i_ch) continue;
for (auto j : jupd) mat[i][j] += mat[i][j_ch] * mat[i_ch][j];
mat[i][j_ch] *= mat[i_ch][j_ch];
}
}
j_ch = -1;
for (int j = 0; j < N + 1; j++) {
if (j_ch < 0 or idx[j_ch] > idx[j]) {
if (mat[M + 1][j] > EPS or (abs_(mat[M + 1][j]) < EPS and mat[M][j] > EPS))
j_ch = j;
}
}
if (j_ch < 0) break;
i_ch = -1;
for (int i = 0; i < M; i++) {
if (mat[i][j_ch] < -EPS) {
if (i_ch < 0) {
i_ch = i;
} else if (mat[i_ch][N + 1] / mat[i_ch][j_ch] - mat[i][N + 1] / mat[i][j_ch] <
-EPS) {
i_ch = i;
} else if (mat[i_ch][N + 1] / mat[i_ch][j_ch] - mat[i][N + 1] / mat[i][j_ch] <
EPS and
idx[i_ch] > idx[i]) {
i_ch = i;
}
}
}
if (i_ch < 0) {
is_infty = true;
break;
}
}
if (mat[M + 1][N + 1] < -EPS) {
infeasible = true;
return;
}
x.assign(N, 0);
for (int i = 0; i < M; i++) {
if (idx[N + 1 + i] < N) x[idx[N + 1 + i]] = mat[i][N + 1];
}
ans = mat[M][N + 1];
}
public:
Simplex(std::vector<std::vector<Float>> A, std::vector<Float> b, std::vector<Float> c) {
is_infty = infeasible = false;
if (Randomize) {
std::mt19937 rng(std::chrono::steady_clock::now().time_since_epoch().count());
std::vector<std::pair<std::vector<Float>, Float>> Abs;
for (unsigned i = 0; i < A.size(); i++) Abs.emplace_back(A[i], b[i]);
std::shuffle(Abs.begin(), Abs.end(), rng);
A.clear(), b.clear();
for (auto &&Ab : Abs) A.emplace_back(Ab.first), b.emplace_back(Ab.second);
shuffle_idx.resize(c.size());
std::iota(shuffle_idx.begin(), shuffle_idx.end(), 0);
std::shuffle(shuffle_idx.begin(), shuffle_idx.end(), rng);
auto Atmp = A;
auto ctmp = c;
for (unsigned i = 0; i < A.size(); i++) {
for (unsigned j = 0; j < A[i].size(); j++) A[i][j] = Atmp[i][shuffle_idx[j]];
}
for (unsigned j = 0; j < c.size(); j++) c[j] = ctmp[shuffle_idx[j]];
}
_initialize(A, b, c);
_solve();
if (Randomize and x.size() == c.size()) {
auto xtmp = x;
for (unsigned j = 0; j < c.size(); j++) x[shuffle_idx[j]] = xtmp[j];
}
}
unsigned nb_iter;
bool is_infty;
bool infeasible;
std::vector<Float> x;
Float ans;
static void
dual(std::vector<std::vector<Float>> &A, std::vector<Float> &b, std::vector<Float> &c) {
const int n = b.size(), m = c.size();
std::vector<std::vector<Float>> At(m, std::vector<Float>(n));
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j) At[j][i] = -A[i][j];
}
A = At;
for (int i = 0; i < n; ++i) b[i] = -b[i];
for (int j = 0; j < m; ++j) c[j] = -c[j];
b.swap(c);
}
};