CF1552H.Guess the Perimeter
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Let us call a point of the plane admissible if its coordinates are positive integers less than or equal to 200 .
There is an invisible rectangle such that:
- its vertices are all admissible;
- its sides are parallel to the coordinate axes;
- its area is strictly positive.
Your task is to guess the perimeter of this rectangle.In order to guess it, you may ask at most 4 queries.
In each query, you choose a nonempty subset of the admissible points and you are told how many of the chosen points are inside or on the boundary of the invisible rectangle.
输入格式
无
输出格式
To ask a query (of the kind described in the statement), you shall print two lines:
- In the first line print "? k " (without the quotes) where k ( k≥1 ) is the number of chosen points.
- In the second line print 2k integers x1,y1,x2,y2,…,xk,yk ( 1≤xi,yi≤200 for i=1,2,…,k ) where (x1,y1),(x2,y2),(x3,y3),…,(xk,yk) are the k distinct admissible chosen points (the order of the points is not important).
After this, you should read an integer — the number of chosen points that are inside or on the boundary of the invisible rectangle.When you have identified the perimeter p of the invisible rectangle, you must print "! p " (without quotes) and terminate your program.
If you ask more than 4 queries or if one of the queries is malformed, the interactor terminates immediately and your program receives verdict Wrong Answer.
The interactor may be adaptive (i.e., the hidden rectangle may not be chosen before the beginning of the interaction).
After printing a query do not forget to output end of line and flush the output. Otherwise, you will get Idleness limit exceeded. To do this, use:
- fflush(stdout) or cout.flush() in C++;
- System.out.flush() in Java;
- flush(output) in Pascal;
- stdout.flush() in Python;
- see documentation for other languages.
Hacks
To hack a solution, use the following format.
The input has only one line, containing the 4 integers x0 , y0 , x1 , y1 ( 1≤x0<x1≤200 , 1≤y0<y1≤200 ) — (x0,y0) is the bottom-left vertex of the hidden rectangle and (x1,y1) is the top-right vertex of the hidden rectangle.
Note that for hacks the interaction won't be adaptive.
输入输出样例
输入#1
13 5 123 80
输出#1
输入#2
2 2 4 4
输出#2
输入#3
1 1 200 200
输出#3
说明/提示
The following is an example of interaction for the first sample intended to show the format of the queries. $$$$ \begin{array}{l|l|l} \text{Query (contestant program)} & \text{Answer (interactor)} & \text{Explanation} \ \hline \mathtt{?\ 4} & & \text{We choose the 4 vertices of} \ \mathtt{13\ 5\ 13\ 80\ 123\ 5\ 123\ 80} & \mathtt{4} &\text{the hidden rectangle.}\ \hline \mathtt{?\ 5} & & \text{We choose 4 points just outside the hidden}\ \mathtt{100\ 4\ 100\ 81\ 12\ 40\ 124\ 40\ 50\ 50} & \mathtt{1}& \text{rectangle and also the point (50,50).}\ \hline \mathtt{?\ 2} & & \text{We choose the points (1,1)} \ \mathtt{200\ 200\ 1\ 1} & \mathtt{0} & \text{and (200,200).}\ \hline \mathtt{!\ 370} & & \text{This is the correct perimeter.} \end{array} $$
For the second sample, a possible interaction is the following. $$ \begin{array}{l|l|l} \text{Query (contestant program)} & \text{Answer (interactor)} & \text{Explanation} \ \hline \mathtt{?\ 4} & & \text{We choose the points (3,2), (4,1),} \ \mathtt{3\ 2\ 4\ 1\ 5\ 2\ 4\ 3} & 2 & \text{(5,2) and (4,3).} \ \hline \mathtt{?\ 7} & & \text{We choose the points (1,4), (2,4),} \ \mathtt{1\ 4\ 2\ 4\ 1\ 5\ 2\ 5\ 5\ 5\ 5\ 6\ 6\ 5} & 1 & \text{(1,5), (2,5), (5,5), (5,6) and (6,5).} \ \hline \mathtt{!\ 8} & & \text{This is the correct perimeter.} \end{array} $$ The situation is shown in the following picture:

The green points are the ones belonging to the first query, while the orange points are the ones belonging to the second query. One can see that there are exactly two rectangles consistent with the interactor's answers:
- the rectangle of vertices (2,2) and (4,4) , shown in red;
- the rectangle of vertices (4,2) and (5,5) , shown in blue.