CF1085C.Connect Three
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The Squareland national forest is divided into equal 1×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.
输入格式
The first line contains two integers xA and yA — coordinates of the plot A ( 0≤xA,yA≤1000 ). The following two lines describe coordinates (xB,yB) and (xC,yC) of plots B and C respectively in the same format ( 0≤xB,yB,xC,yC≤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.
输入输出样例
输入#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: