跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2638. King's Path

    ID: 2644 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 5 上传者: 标签>搜索图论哈希最短路数据结构进阶难度共享题库Codeforces英文题面题目来源题面语言

King's Path

题目描述

C. King's Path
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

The black king is standing on a chess field consisting of 109 rows and 109 columns. We will consider the rows of the field numbered with integers from 1 to 109 from top to bottom. The columns are similarly numbered with integers from 1 to 109 from left to right. We will denote a cell of the field that is located in the i-th row and j-th column as (i,j).

You know that some squares of the given chess field are allowed. All allowed cells of the chess field are given as n segments. Each segment is described by three integers ri,ai,bi (aibi), denoting that cells in columns from number ai to number bi inclusive in the ri-th row are allowed.

Your task is to find the minimum number of moves the king needs to get from square (x0,y0) to square (x1,y1), provided that he only moves along the allowed cells. In other words, the king can be located only on allowed cells on his way.

Let us remind you that a chess king can move to any of the neighboring cells in one move. Two cells of a chess field are considered neighboring if they share at least one point.

Input

The first line contains four space-separated integers x0,y0,x1,y1 (1≤x0,y0,x1,y1≤109), denoting the initial and the final positions of the king.

The second line contains a single integer n (1≤n≤105), denoting the number of segments of allowed cells. Next n lines contain the descriptions of these segments. The i-th line contains three space-separated integers ri,ai,bi (1≤ri,ai,bi≤109,aibi), denoting that cells in columns from number ai to number bi inclusive in the ri-th row are allowed. Note that the segments of the allowed cells can intersect and embed arbitrarily.

It is guaranteed that the king's initial and final position are allowed cells. It is guaranteed that the king's initial and the final positions do not coincide. It is guaranteed that the total length of all given segments doesn't exceed 105.

Output

If there is no path between the initial and final position along allowed cells, print -1.

Otherwise print a single integer − the minimum number of moves the king needs to get from the initial position to the final one.

Examples
Input
5 7 6 11
3
5 3 8
6 7 11
5 2 5
Output
4
Input
3 4 3 10
3
3 1 4
4 5 9
3 10 10
Output
6
Input
1 1 2 10
2
1 1 3
2 6 10
Output
-1

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2298 题。保留原作者与原赛事署名。