#include using namespace std; typedef long long ll; #define rep(i, n) for(ll i = 0, i##_len = (n); i < i##_len; i++) #define reps(i, s, n) for(ll i = (s), i##_len = (n); i < i##_len; i++) #define rrep(i, n) for(ll i = (n) - 1; i >= 0; i--) #define rreps(i, e, n) for(ll i = (n) - 1; i >= (e); i--) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define sz(x) ((ll)(x).size()) #define len(x) ((ll)(x).length()) #define endl "\n" template struct Dijkstra { const T inf = numeric_limits::max() / 2 - 1; vector dist; vector path; Dijkstra() {} Dijkstra(int n) { graph.resize(n); dist.resize(n); prev.resize(n); } void add_edge(int from, int to, T cost) { graph[from].emplace_back(to, cost); } void get_distance(int from) { priority_queue, vector>, greater>> pq; fill(dist.begin(), dist.end(), inf); fill(prev.begin(), prev.end(), -1); dist[from] = 0; pq.push(make_pair(0, from)); while(!pq.empty()) { pair p = pq.top(); pq.pop(); if (dist[p.second] < p.first) continue; for (auto e : graph[p.second]) { if (dist[e.first] > (dist[p.second] + e.second)) { dist[e.first] = dist[p.second] + e.second; prev[e.first] = p.second; pq.push(make_pair(dist[e.first], e.first)); } } } } void get_path(int to) { path = vector(0); for (; to != -1; to = prev[to]) { path.push_back(to); } reverse(path.begin(), path.end()); } private: vector>> graph; vector prev; }; int main() { cin.tie(0); ios::sync_with_stdio(false); // ifstream in("input.txt"); // cin.rdbuf(in.rdbuf()); const ll d[4][2] = {{0, -1}, {0, 1}, {-1, 0}, {1, 0}}; ll n, v, ox, oy; cin >> n >> v >> ox >> oy; vector> l(n, vector(n)); rep(i, n) rep(j, n) cin >> l[i][j]; Dijkstra di(n * n); rep(y, n) { rep(x, n) { rep(i, 4) { ll nx = x + d[i][0]; ll ny = y + d[i][1]; if ((nx < 0) || (nx >= n) || (ny < 0) || (ny >= n)) continue; di.add_edge(y * n + x, ny * n + nx, l[ny][nx]); } } } di.get_distance(0); vector sd(n * n); rep(i, n * n) sd[i] = di.dist[i]; if (sd[(n - 1) * n + (n - 1)] < v) { cout << "YES" << endl; return 0; } if ((ox == 0) && (oy == 0)) { cout << "NO" << endl; return 0; } ox--; oy--; di.get_distance(oy * n + ox); vector od(n * n); rep(i, n * n) od[i] = di.dist[i]; v -= sd[oy * n + ox]; v *= 2; v -= od[(n - 1) * n + (n - 1)]; if (v > 0) { cout << "YES" << endl; return 0; } cout << "NO" << endl; return 0; }