Hide

Problem A
10 Kinds of People

/problems/10kindsofpeople/file/statement/en/img-0001.jpg
Image by Christiaan Colen

The world is made up of 10 kinds of people, those who understand binary and those who do not. These different kinds of people do not always get along so well. Bob might ask for a 10000 ounce coffee (meaning binary) and Alice might make misinterpret his request as being in decimal and give him a 10011100010000 ounce coffee (binary). After Sue explains that this much coffee costs 100 dollars (decimal), Bob might assume he only has to pay 4 dollars (interpreting the price as being in binary). In response to these differences that are difficult to resolve, these two groups have divided the world into two regions, the binary-friendly zones and the decimal-friendly zones. They have even published a map like the following to help people keep up with where the areas are (they have used ones and zeros so nobody would have trouble reading it).

1111100000
1111000000
1110000011
0111100111
0011111111

Users of binary have to stay in the zones marked with a zero. Users of decimal have to stay in the zones marked with a one. You have to figure out if it is possible for either type of person to get between various locations of interest. People can move north, south, east or west, but cannot move diagonally.

Input

Input starts with a line containing two positive integers, 1r1000 and 1c1000. The next r input lines give the contents of the map, each line containing exactly c characters (which are all chosen from 0 or 1).

The next line has an integer 0n1000. The following n lines each contain one query, given as four integers: r1,c1 and r2,c2. These two pairs indicate two locations on the map, and their limits are 1r1,r2r and 1c1,c2c.

Output

For each query, output binary if a binary user can start from location r1,c1 and move to location r2,c2. Output decimal if a decimal user can move between the two locations. Otherwise, output neither.

Sample Input 1 Sample Output 1
1 4
1100
2
1 1 1 4
1 1 1 1
neither
decimal
Sample Input 2 Sample Output 2
10 20
11111111111111111111
11000000000000000101
11111111111111110000
11111111111111110000
11000000000000000111
00011111111111111111
00111111111111111111
10000000000000001111
11111111111111111111
11111111111111111111
3
2 3 8 16
8 1 7 3
1 1 10 20
binary
decimal
neither
Hide

Please log in to submit a solution to this problem

Log in