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
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
#define rep(a, b) for(int a = 0; a < (b); ++a)
#define st first
#define nd second
#define pb push_back
#define all(a) a.begin(), a.end()
const int LIM=15e3+7, K=840;
int poziomo[LIM][8][8], pionowo[LIM][8][8], jaki[K];
int gora[1<<15][K], dol[1<<15][K], lewo[1<<15][K], prawo[1<<15][K], N=1;
int licz_gora(int l, int r, int t) {
	l+=N; r+=N;
	if(l==r) return t;
	++l;
	vector<int>A, B;
	A.pb(l);
	if(l!=r) B.pb(r);
	while(l/2!=r/2) {
		if(l%2==0) A.pb(l+1);
		if(r%2==1) B.pb(r-1);
		l/=2; r/=2;
	}
	reverse(all(A));
	for(auto i : B) t+=gora[i][t%K];
	for(auto i : A) t+=gora[i][t%K];
	return t;
}
int licz_dol(int l, int r, int t) {
	l+=N; r+=N;
	if(l==r) return t;
	--r;
	vector<int>A, B;
	A.pb(l);
	if(l!=r) B.pb(r);
	while(l/2!=r/2) {
		if(l%2==0) A.pb(l+1);
		if(r%2==1) B.pb(r-1);
		l/=2; r/=2;
	}
	reverse(all(B));
	for(auto i : A) t+=dol[i][t%K];
	for(auto i : B) t+=dol[i][t%K];
	return t;
}
int licz_lewo(int l, int r, int t) {
	l+=N; r+=N;
	if(l==r) return t;
	++l;
	vector<int>A, B;
	A.pb(l);
	if(l!=r) B.pb(r);
	while(l/2!=r/2) {
		if(l%2==0) A.pb(l+1);
		if(r%2==1) B.pb(r-1);
		l/=2; r/=2;
	}
	reverse(all(A));
	for(auto i : B) t+=lewo[i][t%K];
	for(auto i : A) t+=lewo[i][t%K];
	return t;
}
int licz_prawo(int l, int r, int t) {
	l+=N; r+=N;
	if(l==r) return t;
	--r;
	vector<int>A, B;
	A.pb(l);
	if(l!=r) B.pb(r);
	while(l/2!=r/2) {
		if(l%2==0) A.pb(l+1);
		if(r%2==1) B.pb(r-1);
		l/=2; r/=2;
	}
	reverse(all(B));
	for(auto i : A) t+=prawo[i][t%K];
	for(auto i : B) t+=prawo[i][t%K];
	return t;
}
int main() {
	ios_base::sync_with_stdio(0); cin.tie(0);
	int n, m, q;
	cin >> n >> m >> q;
	while(N<=max(n, m)) N*=2;
	rep(i, n) rep(j, 8) rep(l, j+1) poziomo[i][j][l]=1;
	rep(i, m) rep(j, 8) rep(l, j+1) pionowo[i][j][l]=1;
	rep(i, n) {
		rep(j, m) {
			string s;
			cin >> s;
			rep(l, s.size()) {
				if(s[l]=='0') poziomo[i][s.size()-1][l]=0; else pionowo[j][s.size()-1][l]=0;
			}
		}
	}
	int ok[K];
	for(int i=1; i<=n; ++i) {
		rep(j, K) {
			ok[j]=0;
			for(int l=2; l<=8; ++l) {
				if(!poziomo[i-1][l-1][j%l]) ok[j]=1;
			}
			if(!ok[j]) jaki[j]=1;
		}
		rep(j, K) {
			int l=0;
			if(j) l=max(gora[N+i][j-1]-1, 0);
			while(!ok[(j+l)%K]) ++l;
			gora[N+i][j]=l;
		}
	}
	for(int i=n-1; i>=0; --i) {
		rep(j, K) {
			ok[j]=0;
			for(int l=2; l<=8; ++l) {
				if(!poziomo[i][l-1][j%l]) ok[j]=1;
			}
		}
		rep(j, K) {
			int l=0;
			if(j) l=max(dol[N+i][j-1]-1, 0);
			while(!ok[(j+l)%K]) ++l;
			dol[N+i][j]=l;
		}
	}
	for(int i=1; i<=m; ++i) {
		rep(j, K) {
			ok[j]=0;
			for(int l=2; l<=8; ++l) {
				if(!pionowo[i-1][l-1][j%l]) ok[j]=1;
			}
			if(!ok[j]) jaki[j]=2;
		}
		rep(j, K) {
			int l=0;
			if(j) l=max(lewo[N+i][j-1]-1, 0);
			while(!ok[(j+l)%K]) ++l;
			lewo[N+i][j]=l;
		}
	}
	for(int i=m-1; i>=0; --i) {
		rep(j, K) {
			ok[j]=0;
			for(int l=2; l<=8; ++l) {
				if(!pionowo[i][l-1][j%l]) ok[j]=1;
			}
		}
		rep(j, K) {
			int l=0;
			if(j) l=max(prawo[N+i][j-1]-1, 0);
			while(!ok[(j+l)%K]) ++l;
			prawo[N+i][j]=l;
		}
	}
	for(int i=N-1; i; --i) rep(j, K) {
		gora[i][j]=gora[2*i+1][j]+gora[2*i][(j+gora[2*i+1][j])%K];
		dol[i][j]=dol[2*i][j]+dol[2*i+1][(j+dol[2*i][j])%K];
		lewo[i][j]=lewo[2*i+1][j]+lewo[2*i][(j+lewo[2*i+1][j])%K];
		prawo[i][j]=prawo[2*i][j]+prawo[2*i+1][(j+prawo[2*i][j])%K];
	}
	while(q--) {
		int t, a, b, c, d;
		cin >> t >> a >> b >> c >> d;
		if(!jaki[t%K]) {
			cout << t << '\n';
			continue;
		}
		if(jaki[t%K]==1) {
			if(a<=c) cout << licz_dol(a, c, t) << '\n';
			else cout << licz_gora(c, a, t) << '\n';
		} else {
			if(b<=d) cout << licz_prawo(b, d, t) << '\n';
			else cout << licz_lewo(d, b, t) << '\n';
		}
	}
}