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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#include <cstdio>
#include <cstdlib>
#include <queue>
#include <cstring>

using namespace std;

int n, m, N, M;

int posnm(int row, int col) {
	return row * m + col;
}

int posNM(int row, int col) {
	return row * M + col;
}

int sasiad_N(int current, char *znaki, int *swiatla, int t) {
	int col = current % M;
	int row = current / M;

	int result = current - M;

	if (result < 0) return -1;

	bool mozna = false;

	if (row - 1 >= 0 && col - 1 >= 0 && row - 1 < n && col - 1 < m) {
		int dlugosc_okresu = swiatla[posnm(row-1, col-1) + 1] - swiatla[posnm(row-1, col-1)];
		int pozycja = t % dlugosc_okresu;
		char c = znaki[swiatla[posnm(row-1, col-1)] + pozycja];
		if (c == '0') mozna = true;
	}

	if (row - 1 >= 0 && col >= 0 && row - 1 < n && col < m) {
		int dlugosc_okresu = swiatla[posnm(row-1, col) + 1] - swiatla[posnm(row-1, col)];
		int pozycja = t % dlugosc_okresu;
		char c = znaki[swiatla[posnm(row-1, col)] + pozycja];
		if (c == '0') mozna = true;
	}

	return mozna ? result : -1;
}

int sasiad_S(int current, char *znaki, int *swiatla, int t) {
	int col = current % M;
	int row = current / M;

	int result = current + M;

	if (result >= M*N) return -1;

	bool mozna = false;

	if (row >= 0 && col - 1 >= 0 && row < n && col - 1 < m) {
		int dlugosc_okresu = swiatla[posnm(row, col-1) + 1] - swiatla[posnm(row, col-1)];
		int pozycja = t % dlugosc_okresu;
		char c = znaki[swiatla[posnm(row, col-1)] + pozycja];
		if (c == '0') mozna = true;
	}

	if (row >= 0 && col >= 0 && row < n && col < m) {
		int dlugosc_okresu = swiatla[posnm(row, col) + 1] - swiatla[posnm(row, col)];
		int pozycja = t % dlugosc_okresu;
		char c = znaki[swiatla[posnm(row, col)] + pozycja];
		if (c == '0') mozna = true;
	}

	return mozna ? result : -1;
}

int sasiad_W(int current, char *znaki, int *swiatla, int t) {
	int col = current % M;
	int row = current / M;

	int result = current - 1;

	if (col == 0) return -1;

	bool mozna = false;

	if (row-1 >= 0 && col-1 >= 0 && row-1 < n && col-1 < m) {
		int dlugosc_okresu = swiatla[posnm(row-1, col-1) + 1] - swiatla[posnm(row-1, col-1)];
		int pozycja = t % dlugosc_okresu;
		char c = znaki[swiatla[posnm(row-1, col-1)] + pozycja];
		if (c == '1') mozna = true;
	}

	if (row >= 0 && col-1 >= 0 && row < n && col-1 < m) {
		int dlugosc_okresu = swiatla[posnm(row, col-1) + 1] - swiatla[posnm(row, col-1)];
		int pozycja = t % dlugosc_okresu;
		char c = znaki[swiatla[posnm(row, col-1)] + pozycja];
		if (c == '1') mozna = true;
	}

	return mozna ? result : -1;
}

int sasiad_E(int current, char *znaki, int *swiatla, int t) {
	int col = current % M;
	int row = current / M;

	int result = current + 1;

	if (col == M-1) return -1;

	bool mozna = false;

	if (row-1 >= 0 && col >= 0 && row-1 < n && col < m) {
		int dlugosc_okresu = swiatla[posnm(row-1, col) + 1] - swiatla[posnm(row-1, col)];
		int pozycja = t % dlugosc_okresu;
		char c = znaki[swiatla[posnm(row-1, col)] + pozycja];
		if (c == '1') mozna = true;
	}

	if (row >= 0 && col >= 0 && row < n && col < m) {
		int dlugosc_okresu = swiatla[posnm(row, col) + 1] - swiatla[posnm(row, col)];
		int pozycja = t % dlugosc_okresu;
		char c = znaki[swiatla[posnm(row, col)] + pozycja];
		if (c == '1') mozna = true;
	}

	return mozna ? result : -1;
}

int main() {
	int q;
	scanf("%d %d %d", &n, &m, &q);
	N = n + 1;
	M = m + 1;

	long long *place = (long long *) calloc(N * M, sizeof(long long));
	long long *odwiedzone = (long long *) calloc(N * M, sizeof(long long));
	char *znaki = (char *) calloc(n*m*8, sizeof(char));
	int *swiatla = (int *) calloc(n*m + 1, sizeof(int));

	getc(stdin);

	int licznik = 0;
	int x = 0;
	swiatla[x] = 0;
	for (int i = 0; i < n; i++) {
		for (int j = 0; j < m; j++) {
			while(true) {
				char c = getc(stdin);
				if (c == '1' || c == '0') {
					znaki[licznik++] = c;

				} else {
					swiatla[++x] = licznik;
					break;
				}
			}
		}
	}

//	for (int i = 0; i < m * n; i++) {
//		for (int j = swiatla[i]; j < swiatla[i+1]; j++) {
//			printf("%c", znaki[j]);
//		}
//		printf("\n");
//	}

	for (int i = 1; i <= q; i++) {
		memset(place, 0, N * M);

		int a, b, c, d;
		long long t;
		scanf("%lld %d %d %d %d", &t, &a, &b, &c, &d);
//		printf("%lld %d %d %d %d\n", t, a, b, c, d);

		queue<int> kolejka;
		kolejka.push(posNM(a, b));
		int szukane = posNM(c, d);

//		printf("--%d--", sasiad_S(2, znaki, swiatla, 1));

		bool znaleziono = false;
		while (! znaleziono) {
			while (! kolejka.empty()) {
				int current = kolejka.front();
				kolejka.pop();

	//			printf("(%d) ", current);

				odwiedzone[current] = i;
				place[current] = t;

				if (current == szukane){
					znaleziono = true;
					break;
				}

	//			printf("%d %d %d %d\n",
	//				sasiad_N(current, znaki, swiatla, t),
	//				sasiad_S(current, znaki, swiatla, t),
	//				sasiad_W(current, znaki, swiatla, t),
	//				sasiad_E(current, znaki, swiatla, t));

				int sN = sasiad_N(current, znaki, swiatla, t);
				int sS = sasiad_S(current, znaki, swiatla, t);
				int sW = sasiad_W(current, znaki, swiatla, t);
				int sE = sasiad_E(current, znaki, swiatla, t);

				if (sN >= 0 && odwiedzone[sN] != i) {
					kolejka.push(sN);
				}

				if (sS >= 0 && odwiedzone[sS] != i) {
					kolejka.push(sS);
				}

				if (sW >= 0 && odwiedzone[sW] != i) {
					kolejka.push(sW);
				}

				if (sE >= 0 && odwiedzone[sE] != i) {
					kolejka.push(sE);
				}
			}

			t++;
			for (int j = 0; j < N * M; j++) {
				if (odwiedzone[j] == i) {
					kolejka.push(j);
				}
			}
		}


		printf("%lld\n", place[szukane]);
	}


	return 0;
}