Codeforces Round #340 (Div. 2) D. Polyline

来源:互联网 发布:python for循环步长 编辑:程序博客网 时间:2024/04/29 08:37

<div></div>
D. Polyline
time limit per test
memory limit per test
input
output
Input
Output

standard outputstandard input256 megabytes1 second

There are three points marked on the coordinate plane. The goal is to make a simple polyline, without self-intersections and self-touches, such that it passes through all these points. Also, the polyline must consist of only segments parallel to the coordinate axes. You are to find the minimum number of segments this polyline may consist of.

Each of the three lines of the input contains two integers. The i-th line contains integers xi and yi ( - 109 ≤ xi, yi ≤ 109) — the coordinates of the i-th point. It is guaranteed that all points are distinct.

Print a single number — the minimum possible number of segments of the polyline.

Sample test(s)
input
1 -11 11 2
output
1
input
-1 -1-1 34 3
output
2
input
1 12 33 2
output
3
Note

The variant of the polyline in the first sample:The variant of the polyline in the second sample:The variant of the polyline in the third sample:




题意:求连接3个点最少需要几条平行于坐标轴的线段
枚举所有情况即可



0 0