#include #include #include #include "defs.h" template std::ostream& operator<<(std::ostream& os, const std::vector& x) noexcept { for (auto&& i : x) os << i << ", "; return os; } int main() { std::cout << LC230508CN::minPushBox( {{'#','.','.','#','#','#','#','#'}, {'#','.','.','T','#','.','.','#'}, {'#','.','.','.','#','B','.','#'}, {'#','.','.','.','.','.','.','#'}, {'#','.','.','.','#','.','S','#'}, {'#','.','.','#','#','#','#','#'}} ); return 0; }