Finding lines

题意翻译

二维平面上有共 $n+m$ 条未知的平行于坐标轴的直线。 你每次可以询问一个平面上点,交互库将返回该点与离它最近的直线之间的距离。 你要在 $3 \times 10^5$ 次询问内确定这 $n$ 条直线。 题目保证直线 $x=a$ 或者 $y=a$ 中 $|a|<=10^{8}$,你询问的点坐标也要在 $[-10^8,10^8]$ 中,其中 $n,m \leq 10^4$。

题目描述

After some programming contest Roma decided to try himself in tourism. His home country Uzhlyandia is a Cartesian plane. He wants to walk along each of the Main Straight Lines in Uzhlyandia. It is known that each of these lines is a straight line parallel to one of the axes (i.e. it is described with the equation $ x=a $ or $ y=a $ , where $ a $ is integer called the coordinate of this line). Roma lost his own map, so he should find out the coordinates of all lines at first. Uncle Anton agreed to help him, using the following rules: - Initially Roma doesn't know the number of vertical and horizontal lines and their coordinates; - Roma can announce integer coordinates of some point in Uzhlandia, and Anton then will tell him the minimum among the distances from the chosen point to each of the lines. However, since the coordinates of the lines don't exceed $ 10^{8} $ by absolute value, Roma can't choose a point with coordinates exceeding $ 10^{8} $ by absolute value. Uncle Anton is in a hurry to the UOI (Uzhlandian Olympiad in Informatics), so he can only answer no more than $ 3·10^{5} $ questions. The problem is that Roma doesn't know how to find out the coordinates of the lines. Write a program that plays Roma's role and finds the coordinates.

输入输出格式

输入格式


There is no input initially. Your program should make queries to get information. It is guaranteed that the number of horizontal and vertical lines is at least $ 1 $ and less than or equal to $ 10^{4} $ for each type.

输出格式


To make a query, print a line "0 x y" (- $ 10^{8}<=x,y<=10^{8} $ ), where $ x $ and $ y $ are the coordinates of the point. After each query you need to print end-of-line, make "flush" operation, and then read the answer to the query — the minimum among the distances prom this point to the Main Straight Lines of Uzhlyandia. You can do no more than $ 3·10^{5} $ queries. When you are ready to print the answer, print three lines: 1. In the first line print "1 n m", where $ n $ is the number of vertical lines (parallel to $ OY $ ), and $ m $ is the number of horizontal lines (parallel to $ OX $ ). 2. In the second line print $ n $ integers $ x_{1},x_{2},...,x_{n} $ — the coordinates of the vertical lines. 3. In the third line in the same format print $ m $ integers $ y_{1},y_{2},...,y_{m} $ — the coordinates of the horizontal lines. You can print coordinates in arbitrary order. To make "flush", you can use (just after printing a query/answer and end-of-line): - fflush(stdout) in C++; - System.out.flush() in Java; - stdout.flush() in Python; - flush(output) in Pascal; - see the documentation for other languages. You will get Wrong Answer if you make more queries than allowed or make an invalid query. You can get Idleness Limit Exceeded if you don't print anything or if you forget to flush the output. If at any moment your program reads -1 as an answer, it should immediately exit normally (for example, by calling exit(0)). You will get Wrong Answer in this case, it means that you made more queries than allowed, or made an invalid query. If you ignore this, you can get other verdicts since your program will continue to read from a closed stream. Making test for hacking The first line should contain two integers $ n $ and $ m $ ( $ 1<=n,m<=10^{4} $ ). The second line should contain $ n $ distinct integers $ x_{i} $ (- $ 10^{8}<=x_{i}<=10^{8} $ ) — the coordinates of the vertical lines. The third line should contain $ m $ distinct integers $ y_{i} $ (- $ 10^{8}<=y_{i}<=10^{8} $ ) — the coordinates of the horizontal lines. You can write coordinates in arbitrary order. You can see the example case in the notes.

输入输出样例

输入样例 #1

1
1
3
2

输出样例 #1

0 1 2
0 -2 -2
0 5 6
0 -2 2
1 1 2
2
0 -3

说明

The example test is `<br></br>1 2<br></br>2<br></br>0 -3<br></br>`The minimum distances are: - from $ (1,2) $ to $ x=2 $ ; - from $ (-2,-2) $ to $ y=-3 $ ; - from $ (5,6) $ to $ x=2 $ ; - from $ (-2,2) $ to $ y=0 $ .