5691: Maze 2D

内存限制:256 MB 时间限制:2 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:1 通过:1

题目描述

E. Maze 2D
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
The last product of the R2 company in the 2D games' field is a new revolutionary algorithm of searching for the shortest path in a n maze.
Imagine a maze that looks like a n rectangle, divided into unit squares. Each unit square is either an empty cell or an obstacle. In one unit of time, a person can move from an empty cell of the maze to any side-adjacent empty cell. The shortest path problem is formulated as follows. Given two free maze cells, you need to determine the minimum time required to go from one cell to the other.
Unfortunately, the developed algorithm works well for only one request for finding the shortest path, in practice such requests occur quite often. You, as the chief R2 programmer, are commissioned to optimize the algorithm to find the shortest path. Write a program that will effectively respond to multiple requests to find the shortest path in a n maze.
Input
The first line contains two integers, n and m (1≤n≤2·105;1≤m≤2·105) − the width of the maze and the number of queries, correspondingly. Next two lines contain the maze. Each line contains n characters, each character equals either '.' (empty cell), or 'X' (obstacle).
Each of the next m lines contains two integers vi and ui (1≤vi,ui≤2n) − the description of the i-th request. Numbers vi, ui mean that you need to print the value of the shortest path from the cell of the maze number vi to the cell number ui. We assume that the cells of the first line of the maze are numbered from 1 to n, from left to right, and the cells of the second line are numbered from n+1 to 2n from left to right. It is guaranteed that both given cells are empty.
Output
Print m lines. In the i-th line print the answer to the i-th request − either the size of the shortest path or -1, if we can't reach the second cell from the first one.
Examples
Input
4 7
.X..
...X
5 1
1 3
7 7
1 4
6 1
4 7
5 7
Output
1
4
0
5
2
2
2
Input
10 3
X...X..X..
..X...X..X
11 7
7 18
18 10
Output
9
-1
3

输入样例 复制


输出样例 复制


分类标签