CF1019D.Large Triangle

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 SS .

输入格式

The first line of input contains two integers nn and SS ( 3n20003 \le n \le 2000 , 1S210181 \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 nn lines contain descriptions of the cities, one per line. Each city is described by its integer coordinates xix_i , yiy_i ( 109xi,yi109-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)(x, y) — the locations of the three cities, which form the triangle of area SS .

输入输出样例

  • 输入#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
    
首页