A12182 | Connect Three
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The Squareland national forest is divided into equal $1 \times 1$ square plots aligned with north-south and east-west directions. Each plot can be uniquely described by integer Cartesian coordinates $(x, y)$ of its south-west corner.
Three friends, Alice, Bob, and Charlie are going to buy three distinct plots of land $A, B, C$ in the forest. Initially, all plots in the forest (including the plots $A, B, C$ ) are covered by trees. The friends want to visit each other, so they want to clean some of the plots from trees. After cleaning, one should be able to reach any of the plots $A, B, C$ from any other one of those by moving through adjacent cleared plots. Two plots are adjacent if they share a side.
For example, $A=(0,0)$ , $B=(1,1)$ , $C=(2,2)$ . The minimal number of plots to be cleared is $5$ . One of the ways to do it is shown with the gray color.Of course, the friends don't want to strain too much. Help them find out the smallest number of plots they need to clean from trees.
Three friends, Alice, Bob, and Charlie are going to buy three distinct plots of land $A, B, C$ in the forest. Initially, all plots in the forest (including the plots $A, B, C$ ) are covered by trees. The friends want to visit each other, so they want to clean some of the plots from trees. After cleaning, one should be able to reach any of the plots $A, B, C$ from any other one of those by moving through adjacent cleared plots. Two plots are adjacent if they share a side.
For example, $A=(0,0)$ , $B=(1,1)$ , $C=(2,2)$ . The minimal number of plots to be cleared is $5$ . One of the ways to do it is shown with the gray color.Of course, the friends don't want to strain too much. Help them find out the smallest number of plots they need to clean from trees.
输入格式
The first line contains two integers $x_A$ and $y_A$ — coordinates of the plot $A$ ( $0 \leq x_A, y_A \leq 1000$ ). The following two lines describe coordinates $(x_B, y_B)$ and $(x_C, y_C)$ of plots $B$ and $C$ respectively in the same format ( $0 \leq x_B, y_B, x_C, y_C \leq 1000$ ). It is guaranteed that all three plots are distinct.
输出格式
On the first line print a single integer $k$ — the smallest number of plots needed to be cleaned from trees. The following $k$ lines should contain coordinates of all plots needed to be cleaned. All $k$ plots should be distinct. You can output the plots in any order.
If there are multiple solutions, print any of them.
If there are multiple solutions, print any of them.
输入输出样例
输入 #1
0 0 1 1 2 2
输出 #1
5 0 0 1 0 1 1 1 2 2 2
输入 #2
0 0 2 0 1 1
输出 #2
4 0 0 1 0 1 1 2 0
The first example is shown on the picture in the legend.
The second example is illustrated with the following image:

The second example is illustrated with the following image:

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