#include #include #include #include using namespace std; struct State { int x; int y; int previousValue; int steps; State(int x, int y, int previousValue, int steps) : x(x), y(y), previousValue(previousValue), steps(steps) { } }; const int dx[] = { 1, -1, 0, 0 }; const int dy[] = { 0, 0, 1, -1 }; bool isKadomatsuSequence(int a, int b, int c) { if (a < 0 || b < 0 || c < 0) { return true; } if (a != c) { if (a < b && b > c) { return true; } if (a > b && b < c) { return true; } } return false; } int main() { int w, h; cin >> w >> h; vector > m(w, vector(h)); for (int y = 0; y < h; ++y) { for (int x = 0; x < w; ++x) { cin >> m[x][y]; } } int result = numeric_limits::max(); vector states; vector > previous(w, vector(h, 0)); states.push_back(State(0, 0, -1, 0)); while (!states.empty()) { State top = states.back(); states.pop_back(); int topValue = m[top.x][top.y]; for (int d = 0; d < 4; ++d) { State next(top.x + dx[d], top.y + dy[d], topValue, top.steps + 1); if (0 <= next.x && next.x < w && 0 <= next.y && next.y < h && isKadomatsuSequence(top.previousValue, topValue, m[next.x][next.y]) && (previous[next.x][next.y] & (1 << d)) == 0) { previous[next.x][next.y] |= (1 << d); if (next.x == w - 1 && next.y == h - 1) { result = min(result, next.steps); } else { states.push_back(next); } } } } cout << (result == numeric_limits::max() ? -1 : result) << endl; return 0; }