CF1681E.Labyrinth Adventures
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You found a map of a weirdly shaped labyrinth. The map is a grid, consisting of n rows and n columns. The rows of the grid are numbered from 1 to n from bottom to top. The columns of the grid are numbered from 1 to n from left to right.
The labyrinth has n layers. The first layer is the bottom left corner (cell (1,1) ). The second layer consists of all cells that are in the grid and adjacent to the first layer by a side or a corner. The third layer consists of all cells that are in the grid and adjacent to the second layer by a side or a corner. And so on.
The labyrinth with 5 layers, for example, is shaped as follows:
The layers are separated from one another with walls. However, there are doors in these walls.
Each layer (except for layer n ) has exactly two doors to the next layer. One door is placed on the top wall of the layer and another door is placed on the right wall of the layer. For each layer from 1 to n−1 you are given positions of these two doors. The doors can be passed in both directions: either from layer i to layer i+1 or from layer i+1 to layer i .
If you are standing in some cell, you can move to an adjacent by a side cell if a wall doesn't block your move (e.g. you can't move to a cell in another layer if there is no door between the cells).
Now you have m queries of sort: what's the minimum number of moves one has to make to go from cell (x1,y1) to cell (x2,y2) .
输入格式
The first line contains a single integer n ( 2≤n≤105 ) — the number of layers in the labyrinth.
The i -th of the next n−1 lines contains four integers d1,x,d1,y,d2,x and d2,y ( 1≤d1,x,d1,y,d2,x,d2,y≤n ) — the coordinates of the doors. Both cells are on the i -th layer. The first cell is adjacent to the top wall of the i -th layer by a side — that side is where the door is. The second cell is adjacent to the right wall of the i -th layer by a side — that side is where the door is.
The next line contains a single integer m ( 1≤m≤2⋅105 ) — the number of queries.
The j -th of the next m lines contains four integers x1,y1,x2 and y2 ( 1≤x1,y1,x2,y2≤n ) — the coordinates of the cells in the j -th query.
输出格式
For each query, print a single integer — the minimum number of moves one has to make to go from cell (x1,y1) to cell (x2,y2) .
输入输出样例
输入#1
2 1 1 1 1 10 1 1 1 1 1 1 1 2 1 1 2 1 1 1 2 2 1 2 1 2 1 2 2 1 1 2 2 2 2 1 2 1 2 1 2 2 2 2 2 2
输出#1
0 1 1 2 0 2 1 0 1 0
输入#2
4 1 1 1 1 2 1 2 2 3 2 1 3 5 2 4 4 3 4 4 3 3 1 2 3 3 2 2 4 4 1 4 2 3
输出#2
3 4 3 6 2
说明/提示
Here is the map of the labyrinth from the second example. The doors are marked red.