// Karol Kosinski 2021 #include <bits/stdc++.h> // #define ENABLE_DEBUG #define FOR(i,a,b) for(int i=(a),_b=(b);i<_b;++i) #define FR_(i,a,b) for(int i=(a),_b=(b);i<=_b;++i) #define FD_(i,b,a) for(int i=(b),_a=(a);i>=_a;--i) #define ALL(c) (c).begin(),(c).end() #define SIZE(c) int((c).size()) #define TIE(x...) int x;tie(x) #define X first #define Y second #ifndef ENABLE_DEBUG #define DEB(k,f,x...) #else #define DEB(k,f,x...) {if(k)printf("--------%4d : %s\n",__LINE__,__FUNCTION__);f(x);} #endif #define DEBL DEB(1,void,0) #define DEBF(f,x...) DEB(1,f,x) #define DEBUG(x...) DEB(0,printf,x) using namespace std; using LL = long long; using ULL = unsigned long long; using PII = pair<int, int>; using TIII = tuple<int, int, int>; constexpr int NX = 15'003; constexpr int QX = 1'000'003; constexpr int GCD = 840; char Is_nm[GCD]; // bool Block[GCD][NX]; vector<int> BV[GCD]; char S[QX][9]; int Len[QX]; void print_row(int k) { if ( not Is_nm[k] ) Is_nm[k] = '-'; DEBUG("%3d(%c): ", k, Is_nm[k]); for ( int i : BV[k] ) DEBUG("%3d", i); DEBUG("\n"); } void print_data() { FOR(k,0,GCD/5) { print_row(k); } } int query() { int t, a, b, c, d; scanf("%d%d%d%d%d", &t, &a, &b, &c, &d); int tmod = t % GCD; if ( Is_nm[tmod] == 'n' ) { DEBUG("First[%3d]: %c -- %d, %d\n", tmod, Is_nm[tmod], a, c); DEBF(print_row, tmod); if ( a == c ) return t; auto it1 = lower_bound( ALL( BV[tmod] ), a ); auto it2 = lower_bound( ALL( BV[tmod] ), c ); if ( it1 == it2 ) return t; a = ( a < c ) ? *it1 : *( it1 - 1 ) + 1; DEBUG(" %c ++ %d\n", Is_nm[tmod], a); } else if ( Is_nm[tmod] == 'm' ) { DEBUG("First[%3d]: %c -- %d, %d\n", tmod, Is_nm[tmod], b, d); DEBF(print_row, tmod); if ( b == d ) return t; auto it1 = lower_bound( ALL( BV[tmod] ), b ); auto it2 = lower_bound( ALL( BV[tmod] ), d ); if ( it1 == it2 ) return t; b = ( b < d ) ? *it1 : *( it1 - 1 ) + 1; DEBUG(" %c -- %d\n", Is_nm[tmod], b); } else { DEBUG("First[%d]: nothing\n", tmod); return t; } char last_nm = Is_nm[tmod]; ++ tmod, ++ t; if ( tmod == GCD ) tmod = 0; if ( last_nm != Is_nm[tmod] ) return t; if ( Is_nm[tmod] == 'n' ) { for (;;) { if ( 'n' == Is_nm[tmod] ) { auto it1 = lower_bound( ALL( BV[tmod] ), a ); auto it2 = lower_bound( ALL( BV[tmod] ), c ); if ( it1 == it2 ) break; a = ( a < c ) ? *it1 : *( it1 - 1 ) + 1; } else { break; } ++ tmod, ++ t; if ( tmod == GCD ) tmod = 0; } } else if ( Is_nm[tmod] == 'm' ) { for (;;) { if ( 'm' == Is_nm[tmod] ) { auto it1 = lower_bound( ALL( BV[tmod] ), b ); auto it2 = lower_bound( ALL( BV[tmod] ), d ); if ( it1 == it2 ) break; b = ( b < d ) ? *it1 : *( it1 - 1 ) + 1; } else { break; } ++ tmod, ++ t; if ( tmod == GCD ) tmod = 0; } } return t; } int main() { int n, m, q; scanf("%d%d%d", &n, &m, &q); FOR(i,0, n * m ) { scanf("%s", &S[i][0]); Len[i] = strlen( S[i] ); DEBUG("%d %s\n", Len[i], S[i]); } FOR(k,0,GCD) { BV[k].reserve(NX); FOR(i,0,n) { int x = i * m; bool line = true; FOR(j,0,m) { // if (k == 336) DEBUG("* (%d, %d)[ %d ]: %s %d\n", i, j, x, S[x], k % Len[x]); // DEB if ( S[x][ k % Len[x] ] == '0' ) { line = false; break; } ++ x; } if (line) { // Block[k][i] = true; BV[k].push_back(i); } } if ( not BV[k].empty() ) { Is_nm[k] = 'n'; continue; } FOR(j,0,m) { int x = j; bool line = true; FOR(i,0,n) { // if (k == 538) DEBUG("* (%d, %d)[ %d ]: %s %d\n", i, j, x, S[x], k % Len[x]); // DEB if ( S[x][ k % Len[x] ] == '1' ) { line = false; break; } x += m; } if (line) { // Block[k][j] = true; BV[k].push_back(j); } } if ( not BV[k].empty() ) { Is_nm[k] = 'm'; } } // DEBF(print_data); FOR(i,0,q) printf("%d\n", query()); return 0; }
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 | // Karol Kosinski 2021 #include <bits/stdc++.h> // #define ENABLE_DEBUG #define FOR(i,a,b) for(int i=(a),_b=(b);i<_b;++i) #define FR_(i,a,b) for(int i=(a),_b=(b);i<=_b;++i) #define FD_(i,b,a) for(int i=(b),_a=(a);i>=_a;--i) #define ALL(c) (c).begin(),(c).end() #define SIZE(c) int((c).size()) #define TIE(x...) int x;tie(x) #define X first #define Y second #ifndef ENABLE_DEBUG #define DEB(k,f,x...) #else #define DEB(k,f,x...) {if(k)printf("--------%4d : %s\n",__LINE__,__FUNCTION__);f(x);} #endif #define DEBL DEB(1,void,0) #define DEBF(f,x...) DEB(1,f,x) #define DEBUG(x...) DEB(0,printf,x) using namespace std; using LL = long long; using ULL = unsigned long long; using PII = pair<int, int>; using TIII = tuple<int, int, int>; constexpr int NX = 15'003; constexpr int QX = 1'000'003; constexpr int GCD = 840; char Is_nm[GCD]; // bool Block[GCD][NX]; vector<int> BV[GCD]; char S[QX][9]; int Len[QX]; void print_row(int k) { if ( not Is_nm[k] ) Is_nm[k] = '-'; DEBUG("%3d(%c): ", k, Is_nm[k]); for ( int i : BV[k] ) DEBUG("%3d", i); DEBUG("\n"); } void print_data() { FOR(k,0,GCD/5) { print_row(k); } } int query() { int t, a, b, c, d; scanf("%d%d%d%d%d", &t, &a, &b, &c, &d); int tmod = t % GCD; if ( Is_nm[tmod] == 'n' ) { DEBUG("First[%3d]: %c -- %d, %d\n", tmod, Is_nm[tmod], a, c); DEBF(print_row, tmod); if ( a == c ) return t; auto it1 = lower_bound( ALL( BV[tmod] ), a ); auto it2 = lower_bound( ALL( BV[tmod] ), c ); if ( it1 == it2 ) return t; a = ( a < c ) ? *it1 : *( it1 - 1 ) + 1; DEBUG(" %c ++ %d\n", Is_nm[tmod], a); } else if ( Is_nm[tmod] == 'm' ) { DEBUG("First[%3d]: %c -- %d, %d\n", tmod, Is_nm[tmod], b, d); DEBF(print_row, tmod); if ( b == d ) return t; auto it1 = lower_bound( ALL( BV[tmod] ), b ); auto it2 = lower_bound( ALL( BV[tmod] ), d ); if ( it1 == it2 ) return t; b = ( b < d ) ? *it1 : *( it1 - 1 ) + 1; DEBUG(" %c -- %d\n", Is_nm[tmod], b); } else { DEBUG("First[%d]: nothing\n", tmod); return t; } char last_nm = Is_nm[tmod]; ++ tmod, ++ t; if ( tmod == GCD ) tmod = 0; if ( last_nm != Is_nm[tmod] ) return t; if ( Is_nm[tmod] == 'n' ) { for (;;) { if ( 'n' == Is_nm[tmod] ) { auto it1 = lower_bound( ALL( BV[tmod] ), a ); auto it2 = lower_bound( ALL( BV[tmod] ), c ); if ( it1 == it2 ) break; a = ( a < c ) ? *it1 : *( it1 - 1 ) + 1; } else { break; } ++ tmod, ++ t; if ( tmod == GCD ) tmod = 0; } } else if ( Is_nm[tmod] == 'm' ) { for (;;) { if ( 'm' == Is_nm[tmod] ) { auto it1 = lower_bound( ALL( BV[tmod] ), b ); auto it2 = lower_bound( ALL( BV[tmod] ), d ); if ( it1 == it2 ) break; b = ( b < d ) ? *it1 : *( it1 - 1 ) + 1; } else { break; } ++ tmod, ++ t; if ( tmod == GCD ) tmod = 0; } } return t; } int main() { int n, m, q; scanf("%d%d%d", &n, &m, &q); FOR(i,0, n * m ) { scanf("%s", &S[i][0]); Len[i] = strlen( S[i] ); DEBUG("%d %s\n", Len[i], S[i]); } FOR(k,0,GCD) { BV[k].reserve(NX); FOR(i,0,n) { int x = i * m; bool line = true; FOR(j,0,m) { // if (k == 336) DEBUG("* (%d, %d)[ %d ]: %s %d\n", i, j, x, S[x], k % Len[x]); // DEB if ( S[x][ k % Len[x] ] == '0' ) { line = false; break; } ++ x; } if (line) { // Block[k][i] = true; BV[k].push_back(i); } } if ( not BV[k].empty() ) { Is_nm[k] = 'n'; continue; } FOR(j,0,m) { int x = j; bool line = true; FOR(i,0,n) { // if (k == 538) DEBUG("* (%d, %d)[ %d ]: %s %d\n", i, j, x, S[x], k % Len[x]); // DEB if ( S[x][ k % Len[x] ] == '1' ) { line = false; break; } x += m; } if (line) { // Block[k][j] = true; BV[k].push_back(j); } } if ( not BV[k].empty() ) { Is_nm[k] = 'm'; } } // DEBF(print_data); FOR(i,0,q) printf("%d\n", query()); return 0; } |