#include #define For(i, a, b) for(int (i)=(int)(a); (i)<(int)(b); ++(i)) #define rFor(i, a, b) for(int (i)=(int)(a)-1; (i)>=(int)(b); --(i)) #define rep(i, n) For((i), 0, (n)) #define rrep(i, n) rFor((i), (n), 0) #define fi first #define se second using namespace std; typedef long long lint; typedef unsigned long long ulint; typedef pair pii; typedef pair pll; template bool chmax(T &a, const T &b){if(a bool chmin(T &a, const T &b){if(a>b){a=b; return true;} return false;} template T div_floor(T a, T b){ if(b < 0) a *= -1, b *= -1; return a>=0 ? a/b : (a+1)/b-1; } template T div_ceil(T a, T b){ if(b < 0) a *= -1, b *= -1; return a>0 ? (a-1)/b+1 : a/b; } constexpr lint mod = 1e9+7; constexpr lint INF = mod * mod; constexpr int MAX = 200010; int n, V, sx, sy, gx, gy, L[110][110], d[110][110][210]; int dx[4] = {0, 1, 0, -1}; int dy[4] = {1, 0, -1, 0}; int main(){ scanf("%d%d%d%d%d%d", &n, &V, &sy, &sx, &gy, &gx); --sx; --sy; --gx; --gy; rep(i, n)rep(j, n) scanf("%d", &L[i][j]); rep(i, n)rep(j, n)rep(k, 210) d[i][j][k] = mod; queue> que; que.emplace(0, sx, sy, 0); d[sx][sy][0] = 0; while(!que.empty()){ auto [tv, x, y, td] = que.front(); que.pop(); if(td+1 == 210) continue; rep(i, 4){ int nx = x + dx[i], ny = y + dy[i]; if(0<=nx && nx