6260: Triangle

内存限制:128 MB 时间限制:1.000 S
评测方式:文本比较 命题人:
提交:1 解决:1

题目描述

It is a simple task, for N points on the 2D plane, you are supposed to find whether there are three points which could form a isosceles triangle.


输入

There are several test cases. For each case, the first line is an integer N (3 <= N <= 500) indicating the number of points. N lines follow, each line contains two doubles(not exceed 1000.0), indicating the coordinates of the points.

输出

For each case, if there exists a solution which could form a isosceles triangle, output “YES”, else output “NO”.

样例输入 复制

3
0 0
1 1
-1 1
3
0 0
1 1
5 10

样例输出 复制

YES
NO

来源/分类