A15959 | Ian Visits Mary
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Ian and Mary are frogs living on lattice points of the Cartesian coordinate plane, with Ian living on $(0,0)$ and Mary living on $(a,b)$ .
Ian would like to visit Mary by jumping around the Cartesian coordinate plane. Every second, he jumps from his current position $(x_p, y_p)$ to another lattice point $(x_q, y_q)$ , such that no lattice point other than $(x_p, y_p)$ and $(x_q, y_q)$ lies on the segment between point $(x_p, y_p)$ and point $(x_q, y_q)$ .
As Ian wants to meet Mary as soon as possible, he wants to jump towards point $(a,b)$ using at most $2$ jumps. Unfortunately, Ian is not good at maths. Can you help him?
A lattice point is defined as a point with both the $x$ -coordinate and $y$ -coordinate being integers.
Ian would like to visit Mary by jumping around the Cartesian coordinate plane. Every second, he jumps from his current position $(x_p, y_p)$ to another lattice point $(x_q, y_q)$ , such that no lattice point other than $(x_p, y_p)$ and $(x_q, y_q)$ lies on the segment between point $(x_p, y_p)$ and point $(x_q, y_q)$ .
As Ian wants to meet Mary as soon as possible, he wants to jump towards point $(a,b)$ using at most $2$ jumps. Unfortunately, Ian is not good at maths. Can you help him?
A lattice point is defined as a point with both the $x$ -coordinate and $y$ -coordinate being integers.
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 500$ ) — the number of test cases. The description of test cases follows.
The first and only line of each test case contains two integers $a$ and $b$ ( $1\le a,b\le 10^9$ ) — the coordinates of the lattice point where Mary lives.
The first and only line of each test case contains two integers $a$ and $b$ ( $1\le a,b\le 10^9$ ) — the coordinates of the lattice point where Mary lives.
输出格式
For each test case, print an integer $n$ ( $1 \le n \le 2$ ) on the first line, denoting the number of jumps Ian uses in order to meet Mary. Note that you do not need to minimize the number of jumps.
On the $i$ -th line of the next $n$ lines, print two integers $0 \le x_i,y_i \le 10^9$ separated by a space, denoting Ian's location $(x_i,y_i)$ after the $i$ -th jump. $x_n = a$ , $y_n = b$ must hold.
Ian's initial location and his locations after each of the $n$ jumps need not be distinct.
If there are multiple solutions, output any.
On the $i$ -th line of the next $n$ lines, print two integers $0 \le x_i,y_i \le 10^9$ separated by a space, denoting Ian's location $(x_i,y_i)$ after the $i$ -th jump. $x_n = a$ , $y_n = b$ must hold.
Ian's initial location and his locations after each of the $n$ jumps need not be distinct.
If there are multiple solutions, output any.
输入输出样例
输入 #1
8 3 4 4 4 3 6 2 2 1 1 7 3 2022 2023 1000000000 1000000000
输出 #1
1 3 4 2 3 2 4 4 2 5 3 3 6 2 1 0 2 2 1 1 1 1 7 3 1 2022 2023 2 69420420 469696969 1000000000 1000000000
In the first test case:

$(0,0) \to (3,4)$
In the second test case:

$(0,0) \to (3,2) \to (4,4)$
In the third test case:

$(0,0) \to (5,3) \to (3,6)$

$(0,0) \to (3,4)$
In the second test case:

$(0,0) \to (3,2) \to (4,4)$
In the third test case:

$(0,0) \to (5,3) \to (3,6)$
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted