300646: CF123B. Squares

Memory Limit:256 MB Time Limit:0 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Squares

题意翻译

给出一个无限大的二维坐标平面,现在有一些坏点,规定: - $x+y≡0(mod\ 2a)$ * $x-y≡0(mod\ 2b)$ 满足以上两条件之一的点即为坏点,现在问最少经过多少个坏点的情况下,可以从起点到达终点。 感谢@luosw提供的翻译

题目描述

You are given an infinite checkered field. You should get from a square ( $ x_{1} $ ; $ y_{1} $ ) to a square ( $ x_{2} $ ; $ y_{2} $ ). Using the shortest path is not necessary. You can move on the field squares in four directions. That is, when you are positioned in any square, you can move to any other side-neighboring one. A square ( $ x $ ; $ y $ ) is considered bad, if at least one of the two conditions is fulfilled: - $ |x+y|≡0 $ $ (mod 2a) $ , - $ |x-y|≡0 $ $ (mod 2b) $ . Your task is to find the minimum number of bad cells one will have to visit on the way from ( $ x_{1} $ ; $ y_{1} $ ) to ( $ x_{2} $ ; $ y_{2} $ ).

输入输出格式

输入格式


The only line contains integers $ a $ , $ b $ , $ x_{1} $ , $ y_{1} $ , $ x_{2} $ and $ y_{2} $ — the parameters of the bad squares, the coordinates of the initial and the final squares correspondingly ( $ 2<=a,b<=10^{9} $ and $ |x_{1}| $ , $ |y_{1}| $ , $ |x_{2}| $ , $ |y_{2}|<=10^{9} $ ). It is guaranteed that the initial and the final square aren't bad.

输出格式


Print a single number — the minimum number of bad cells that one will have to visit in order to travel from square ( $ x_{1} $ ; $ y_{1} $ ) to square ( $ x_{2} $ ; $ y_{2} $ ).

输入输出样例

输入样例 #1

2 2 1 0 0 1

输出样例 #1

1

输入样例 #2

2 2 10 11 0 1

输出样例 #2

5

输入样例 #3

2 4 3 -1 3 7

输出样例 #3

2

说明

In the third sample one of the possible paths in (3;-1)->(3;0)->(3;1)->(3;2)->(4;2)->(4;3)->(4;4)->(4;5)->(4;6)->(4;7)->(3;7). Squares (3;1) and (4;4) are bad.

Input

题意翻译

给出一个无限大的二维坐标平面,现在有一些坏点,规定: - $x+y≡0(mod\ 2a)$ * $x-y≡0(mod\ 2b)$ 满足以上两条件之一的点即为坏点,现在问最少经过多少个坏点的情况下,可以从起点到达终点。 感谢@luosw提供的翻译

加入题单

算法标签: