Large Triangle

题意翻译

题意简述 给出$N$个点,是否存在$3$个点,它们组成的三角形面积为$S$。 输入数据 第一行两个正整数$N,S(3 \leq N \leq 2000 , 1 \leq S \leq 2 \times 10^{18})$ 接下来$N$行每行$2$个整数$x_i,y_i(-10^9 \leq x_i,y_i \leq 10^9)$描述一个点。保证不存在两点坐标相同,不存在三点共线 输出数据 如果存在,第一行输出```Yes```,接下来三行每行两个整数表示你找到的三角形的三个顶点。如果不存在,输出一行```No```

题目描述

There is a strange peculiarity: if you connect the cities of Rostov, Taganrog and Shakhty, peculiarly, you get a triangle «Unbelievable But True» Students from many different parts of Russia and abroad come to Summer Informatics School. You marked the hometowns of the SIS participants on a map. Now you decided to prepare an interesting infographic based on this map. The first thing you chose to do is to find three cities on this map, such that they form a triangle with area $ S $ .

输入输出格式

输入格式


The first line of input contains two integers $ n $ and $ S $ ( $ 3 \le n \le 2000 $ , $ 1 \le S \le 2 \cdot 10^{18} $ ) — the number of cities on the map and the area of the triangle to be found. The next $ n $ lines contain descriptions of the cities, one per line. Each city is described by its integer coordinates $ x_i $ , $ y_i $ ( $ -10^9 \le x_i, y_i \le 10^9 $ ). It is guaranteed that all cities are located at distinct points. It is also guaranteed that no three cities lie on the same line.

输出格式


If the solution doesn't exist — print «No». Otherwise, print «Yes», followed by three pairs of coordinates $ (x, y) $ — the locations of the three cities, which form the triangle of area $ S $ .

输入输出样例

输入样例 #1

3 7
0 0
3 0
0 4

输出样例 #1

No

输入样例 #2

4 3
0 0
2 0
1 2
1 3

输出样例 #2

Yes
0 0
1 3
2 0