7048.Knight Moves Queries

Time Limit: 1s Memory Limit: 512MB

There is a knight on an infinite chessboard. The rows and columns are $1$ -indexed.

Your task is to efficiently process queries of the form: when the knight starts at position $(x,y)$ , what is the minimum number of moves the knight needs to do to reach the top-left corner.

Input Format(From the terminal/stdin)

The first line has an integer $n$ : the number of queries.

After this, there are $n$ lines. Each line has two integers $x$ and $y$ : the knight position.

  • $1 \le n \le 10^5$
  • $1 \le x, y \le 10^9$

Output Format(To the terminal/stdout)

For each query, print the minimum number of moves.

Sample Input

Copy
4
1 1
2 3
4 1
42 1337
 \n
 · \n
 · \n
 · \n
  ·    \n

Sample Output

Copy
0
1
3
669
 \n
 \n
 \n
   \n
Source: CSES, Additional Problems II, 3218

Submit

请先 登录

© 2025 FAQs