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
#include <algorithm>
#include <cstdio>
#include <cstddef>
#include <cstring>
#include <numeric>

unsigned char S[1000000][8];
unsigned char SL[1000000];

unsigned char H[15000][15000]; // 1 jeśli czy na skrzyżowaniu (y,x) przejść można w kierunku poziomym, 0 wpw

char types[840];
int interval_start[840][15001]; // pierwszy w przedziale placów dla placu o zadanych współrzędnych
int interval_end[840][15001]; // ostatni w przedziale placów dla placu o zadanych współrzędnych

int Y, X; // Y=n, X=m
unsigned P; // period of the whole system

bool is_horizontal_row(int y)
{
    for (int x=0; x<X; ++x) {
        if (!H[y][x]) {
            return false;
        }
    }
    return true;
}

bool is_vertical_row(int x)
{
    for (int y=0; y<Y; ++y) {
        if (H[y][x]) {
            return false;
        }
    }
    return true;
}

bool has_period(const char* str, int length, int period)
{
    if (length % period) {
        return false;
    }
    for (int i=period; i<length; ++i) {
        if (str[i-period] != str[i]) {
            return false;
        }
    }
    return true;
}

int find_period(const char* str)
{
    int length = strlen(str);
    for (int period=1; period<=4; ++period) {
        if (has_period(str, length, period)) {
            return period;
        }
    }
    return length;
}

int calculate_end_time(int t, int y, int x, int yE, int xE)
{
    while (true) {
        int tP = t % P;
        unsigned char typ = types[tP];
        if (typ == 'H') {
            x = xE;
            int y_min = interval_start[tP][y];
            int y_max = interval_end[tP][y];
            if (yE > y_max) {
                y = y_max;
            } else if (yE < y_min) {
                y = y_min;
            } else {
                break; // jestem!
            }
        } else if (typ == 'V') {
            y = yE;
            int x_min = interval_start[tP][x];
            int x_max = interval_end[tP][x];
            if (xE > x_max) {
                x = x_max;
            } else if (xE < x_min) {
                x = x_min;
            } else {
                break; // jestem!
            }
        } else {
            break; // można dojść gdziekolwiek
        }
        ++t;
    }
    return t;
}

int main()
{
    int Q;
    scanf("%d%d%d", &Y, &X, &Q);

    bool SL_flags[8];
    for (int si=0; si<8; ++si) {
        SL_flags[si] = 0;
    }

    int index = 0;
    for (int y=0; y<Y; ++y) {
        for (int x=0; x<X; ++x) {
            char s_txt[9];
            scanf("%s", s_txt);
            int sl = find_period(s_txt);
            SL[index] = sl;
            SL_flags[sl-1] = 1;
            for (int si=0; si<sl; ++si) {
                S[index][si] = (s_txt[si] == '1');
            }
            ++index;
        }
    }

    P = 1;
    for (int si=0; si<8; ++si) {
        if (SL_flags[si]) {
            P = P * (si+1) / std::gcd(P, si+1);
        }
    }

    for (unsigned t=0; t<P; ++t) {
        // generujemy układ dla t=0 do P-1
        index = 0;
        for (int y=0; y<Y; ++y) {
            for (int x=0; x<X; ++x) {
                H[y][x] = S[index][t % SL[index]];
                ++index;
            }
        }

        // klasyfikujemy układ
        int last_x = 0;
        for (int x=0; x<X; ++x) {
            if (is_vertical_row(x)) {
                for (int xp=last_x; xp<=x; ++xp) {
                    interval_start[t][xp] = last_x;
                    interval_end[t][xp] = x;
                }
                last_x = x + 1;
            }
        }
        if (last_x) {
            for (int xp=last_x; xp<=X; ++xp) {
                interval_start[t][xp] = last_x;
                interval_end[t][xp] = X;
            }
            types[t] = 'V';
        } else {
            int last_y = 0;
            for (int y=0; y<Y; ++y) {
                if (is_horizontal_row(y)) {
                    for (int yp=last_y; yp<=y; ++yp) {
                        interval_start[t][yp] = last_y;
                        interval_end[t][yp] = y;
                    }
                    last_y = y + 1;
                }
            }
            if (last_y) {
                for (int yp=last_y; yp<=Y; ++yp) {
                    interval_start[t][yp] = last_y;
                    interval_end[t][yp] = Y;
                }
                types[t] = 'H';
            } else {
                types[t] = 'T';
            }
        }
    }

    for (int q=0; q<Q; ++q) {
        int t, y0, x0, yE, xE;
        scanf("%d%d%d%d%d", &t, &y0, &x0, &yE, &xE);
        printf("%d\n", calculate_end_time(t, y0, x0, yE, xE));
    }
}