algorithm

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub gtnao/algorithm

:warning: src/other/gird.hpp

Code

constexpr int dx[4] = {1, 0, -1, 0};
constexpr int dy[4] = {0, 1, 0, -1};

constexpr int dx8[8] = {1, 0, -1, 0, 1, -1, 1, -1};
constexpr int dy8[8] = {0, 1, 0, -1, 1, -1, -1, 1};
#line 1 "src/other/gird.hpp"
constexpr int dx[4] = {1, 0, -1, 0};
constexpr int dy[4] = {0, 1, 0, -1};

constexpr int dx8[8] = {1, 0, -1, 0, 1, -1, 1, -1};
constexpr int dy8[8] = {0, 1, 0, -1, 1, -1, -1, 1};
Back to top page