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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
#include<cstdio>
#include<algorithm>

using namespace std;

static int n, m;

static unsigned char modk[16384][7];
static unsigned char modw[16384][7];

static int drzewok[840][2*16384];
static int drzewokodwr[840][2*16384];
static int drzewow[840][2*16384];
static int drzewowodwr[840][2*16384];

static void przygotuj_drzewa(){
    int in = 16384;

    for(int t = 0; t < 840; ++t){
        for(int i = 0; i < in; ++i){
            int czek = 0;
            while(true){
                bool flaga = false;
                for(int r = 2; r <= 8; ++r){
                    int w = (t + czek) % r;
                    if((1<<w) & modk[i][r-2]){

                    }
                    else{
                        flaga = true;
                        break;
                    }
                }

                if(flaga){
                    break;
                }
                else{
                    ++czek;
                }
            }

            drzewok[t][in + i] = czek;
            drzewokodwr[t][in + i] = czek;

            czek = 0;
            while(true){
                bool flaga = false;
                for(int r = 2; r <= 8; ++r){
                    int w = (t + czek) % r;
                    if((1<<w) & modw[i][r-2]){

                    }
                    else{
                        flaga = true;
                        break;
                    }
                }

                if(flaga){
                    break;
                }
                else{
                    ++czek;
                }
            }

            drzewow[t][in + i] = czek;
            drzewowodwr[t][in + i] = czek;
        }
    }

    in /= 2;

    while(in){
        for(int t = 0; t < 840; ++t){
            for(int i = in; i < 2 * in; ++i){
                int s = drzewok[t][2*i];
                drzewok[t][i] = s + drzewok[(t+s)%840][2*i+1];
                s=drzewokodwr[t][2*i+1];
                drzewokodwr[t][i] = s + drzewokodwr[(t+s)%840][2*i];

                s = drzewow[t][2*i];
                drzewow[t][i] = s + drzewow[(t+s)%840][2*i+1];
                s=drzewowodwr[t][2*i+1];
                drzewowodwr[t][i] = s + drzewowodwr[(t+s)%840][2*i];
            }
        }

        in /= 2;
    }

}

static void preprocessing(){
    przygotuj_drzewa();

}

static int przeszukaj(int (*tab)[16384*2], int t, int a, int b, int A, int B, int in, bool odwr){
    if(a < A){
        a = A;
    }
    if(b > B){
        b = B;
    }

    if(a > b){
        return 0;
    }

    if(A == a && B == b){
        return tab[t][in];
    }

    int S = (A + B) / 2;

    if(odwr){
        int t1 = przeszukaj(tab, t, a, b, S+1, B, 2 * in + 1, odwr);
        return t1 + przeszukaj(tab, (t + t1) % 840, a, b, A, S, 2 * in, odwr);
    }
    else{
        int t1 = przeszukaj(tab, t, a, b, A, S, 2 * in, odwr);
        return t1 + przeszukaj(tab, (t + t1) % 840, a, b, S+1, B, 2 * in + 1, odwr);
    }
}

static int policz(int t, int a, int b, int c, int d){
    int (*drzewo)[2*16384];
    bool odwr;
    //wiersze
    if(a > c){
        drzewo = drzewowodwr;
        odwr = true;
        swap(a,c);
    }
    else{
        drzewo = drzewow;
        odwr = false;
    }
    int tw = przeszukaj(drzewo, t % 840, a, c-1, 0, 16383, 1, odwr);

    if(b > d){
        drzewo = drzewokodwr;
        odwr = true;
        swap(b,d);
    }
    else{
        drzewo = drzewok;
        odwr = false;
    }
    int tk = przeszukaj(drzewo, t % 840, b, d-1, 0, 16383, 1, odwr);

    if(tk > tw)
        return tk;
    else
        return tw;
}

int main(){
    int q;
    scanf("%i%i%i", &n, &m, &q);

    for(int i = 0; i < n; ++i){
        for(int r = 0; r < 7; ++r){
            modw[i][r] = 255;
        }
    }

    for(int i = 0; i < m; ++i){
        for(int r = 0; r < 7; ++r){
            modk[i][r] = 255;
        }
    }

    for(int i = 0; i < n; ++i){
        for(int j = 0; j < m; ++j){
            char str[9];
            scanf(" %s", str);

            int s = -1;
            unsigned char slowo = 0;
            while(str[++s]){
                if(str[s] == '1')
                    slowo |= (1 << s);
            }
            modw[i][s-2] &= slowo;
            modk[j][s-2] &= ~slowo;
        }
    }

    preprocessing();

    while(q--){
        int t, a, b, c, d;
        scanf("%i%i%i%i%i", &t, &a, &b, &c, &d);


        int result = t + policz(t, a, b, c, d);

        printf("%i\n", result);
    }

    return 0;
}