#include<stdio.h>
#include<iostream>
using namespace std;
const int dx[5]={0,1,-1,0,0};
const int dy[5]={0,0,0,1,-1};
int n,m,a[10005][10005],x1,y1,x2,y2,st[1005][4];
void bfs(){
int head=0,tail=1;
st[1][1]=x1;st[1][2]=y1;
do{
head++;
for(int i=1;i<=4;i++){ //四个方向
int x=st[head][1]+dx[i];
int y=st[head][2]+dy[i];
while(x>=1 and x<=n and y>=1 and y<=m and a[x][y]0){ //如果没有出界而且能走,就一直走
if(xx2 and y==y2){ //判断是不是满足条件
printf("%d",st[tail][3]);
return ;
}
tail++;
a[x][y]=1;
st[tail][1]=x;
st[tail][2]=y;
st[tail][3]=st[head][3]+1; //是st[head][3]的转弯数加一
x+=dx[i];
y+=dy[i];
}
}
}while(head<tail);
}
int main(){
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++)
scanf("%d",&a[i][j]);
scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
bfs();
return 0;
}