|
||||||||||
Alexandra and COSTime Limit: 8000/5000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)Total Submission(s): 762 Accepted Submission(s): 281 Problem Description Alexandra and her little brother are playing a game called "Clash of Submarines" (COS, for short). In this game, one can build so many(about 100,000) submarines, and detect and collect underwater treasures. A submarine use radar to detect treasures. Alexandra's submarines are all face north. For each submarine, its radar can detect treasures between northwest and northeast. For example, the "S" is the submarine, and the "+" is a grid which the submarine can detect, and the "-" is which it cannot detect: ++++- +++-- -S--- ----- Note: the submarine can also detect the grid it occupies. To simplify the problem, we build coordinate system on the map. X-axis goes from north to south, and Y-axis from west to east. We define the distance between two points (x1,y1) and (x2,y2) to be max(abs(x1-x2),abs(y1-y2)). There is something special with the radar. Each submarine has a value D. The submarine can only detect a treasure, if D is a divisor of the distance between the submarine and the treasure. Don't forget any D is a divisor of 0. Here comes the problem: Given the map of size N*M, and Q submarines' position and D, for each submarine please output the number of treasures it can detect. Note: in this problem, we only detect treasures and won't collect them, so the submarines don't affect each other. Input There are multiple test cases (no more than 30). For each case, the first line is three positive integers N, M and Q. Next N lines is a map of size N*M. "X" means treasure and "." means no treasure. Next Q lines, each line is the description of a submarine. There are three positive integers X, Y, D, which means its position is (X,Y), and its value is D. $1 \leq N,M \leq 1000$. $1 \leq Q \leq 500,000$. $1 \leq X \leq N, 1 \leq Y \leq M$. $1 \leq D \leq 1000$. Number of cases with $max(N*M,Q) > 1,000$ is no more than 3. Huge data. Fast I/O may be needed. Output For each case, output Q lines, each line contains the number of treasures that the current submarine can detect. Sample Input
Sample Output
Source | ||||||||||
|