1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#include <iostream>

using namespace std;

bool Przejscie(int x, int y, int tab[], int dl[], long long t, int n, int m)
{
    t=t%dl[x*m+y];
    return tab[x*m*8 + y*8 + t];
}

void MakeGood(int a, int b, int tab[], int dl[], bool good2[], long long t, int n, int m)
{
    bool isGood = false;
    if(a!=0)
    {
        isGood = false;
        int index = (a-1)*(m+1)+b;
        if(b!=0)
            isGood = !Przejscie(a-1, b-1, tab, dl, t, n, m);
        if(b!=m)
            isGood = isGood || !Przejscie(a-1, b, tab, dl, t, n, m);
        if(isGood)
        {
            if(!good2[index])
            {
                good2[index]=1;
                MakeGood(a-1,b,tab,dl,good2,t,n,m);
            }
        }

    }
    if(b!=0)
    {
        isGood = false;
        int index = a*(m+1)+b-1;
        if(a!=0)
            isGood = Przejscie(a-1, b-1, tab, dl, t, n, m);
        if(a!=n)
            isGood = isGood || Przejscie(a, b-1, tab, dl, t, n, m);
        if(isGood)
        {
            if(!good2[index])
            {
                good2[index]=1;
                MakeGood(a,b-1,tab,dl,good2,t,n,m);
            }
        }
    }
    if(a!=n)
    {
        isGood = false;
        int index = (a+1)*(m+1)+b;
        if(b!=0)
            isGood = !Przejscie(a, b-1, tab, dl, t, n, m);
        if(b!=m)
            isGood = isGood || !Przejscie(a, b, tab, dl, t, n, m);
        if(isGood)
        {
            if(!good2[index])
            {
                good2[index]=1;
                MakeGood(a+1,b,tab,dl,good2,t,n,m);
            }
        }
    }
    if(b!=m)
    {
        isGood = false;
        int index = a*(m+1)+b+1;
        if(a!=0)
            isGood = Przejscie(a-1, b, tab, dl, t, n, m);
        if(a!=n)
            isGood = isGood || Przejscie(a, b, tab, dl, t, n, m);
        if(isGood)
        {
            if(!good2[index])
            {
                good2[index]=1;
                MakeGood(a,b+1,tab,dl,good2,t,n,m);
            }
        }
    }
}

int main()
{
    int n, m, q;
    string tmp;
    cin>>n>>m>>q;
    int tab[n*m*8]; //[i][j][k] = [i*m*8 + j*8 + k]
    int dl[n*m]; //[n][m] = [i*m + j]
    for(int i=0; i<n; i++)
    {
        for(int j=0; j<m; j++)
        {
            cin>>tmp;
            int k;
            for(k=0; k<tmp.size(); k++)
                tab[i*m*8 + j*8 + k] = tmp[k] - '0';
            dl[i*m + j]=k;
        }
    }

    int t[q], a[q], b[q], c[q], d[q];
    for(int i=0; i<q; i++)
        cin>>t[i]>>a[i]>>b[i]>>c[i]>>d[i];
    for(int prz=0; prz<q; prz++)
    {
        long long ti=t[prz];
        bool good[(n+1)*(m+1)]; //[i][j] = [i*(m+1)+j]
        bool good2[(n+1)*(m+1)];
        for(int i=0; i<n+1; i++)
            for(int j=0; j<m+1; j++)
                good2[i*(m+1)+j]=0;
        good2[(a[prz])*(m+1)+(b[prz])] = true;
        while(good2[c[prz]*(m+1)+d[prz]]==0)
        {
            for(int i=0; i<n+1; i++)
                for(int j=0; j<m+1; j++)
                    good[i*(m+1)+j]=good2[i*(m+1)+j];
            for(int i=0; i<n+1; i++)
                for(int j=0; j<n+1; j++)
                    if(good[i*(m+1)+j]==1)
                        MakeGood(i,j,tab,dl,good2,ti,n,m);
            ti++;
        }
        if(a[prz]==c[prz] && b[prz]==d[prz])
            cout<<ti<<endl;
        else
            cout<<ti-1<<endl;
    }
    return 0;
}