CF1578I.Interactive Rays
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
This is an interactive problem.
Your goal is to find a circle on a plane by shooting rays and getting the distance to the circle as a result.
Interactor has three hidden integer parameters that are determined in advance for each test, but which you don't know — xc , yc , and rc . (xc,yc) are coordinates of the circle's center and rc is its radius. The absolute values of xc , yc , and rc do not exceed 105 , and 1≤rc≤xc2+yc2−1 .
You can shoot rays that extend from the origin (0,0) and go via a point (xq,yq) with the integer coordinates you specify. For each ray, you get a distance from the ray to the circle or 0 if the ray intersects the circle.
输入格式
无
输出格式
The interaction starts with your program printing a query to the standard output and finishes when your program finds and prints the answer to the problem.
Each query has a form of "? xq yq ", where xq and yq are integers ( ∣xq∣,∣yq∣≤106 ; xq=0 or yq=0 ).
The interactor outputs a line with a single floating-point number — the distance between a query ray and a circle that is precise to 10−10 by an absolute value.
Your program can make the next query, read the output, and so on. You are allowed to do at most 60 queries. At the end of the interaction, print the answer line "! xc yc rc ", flush the output and exit.
Note, that the output of the interactor is actually rounded to the 10-th digit after a decimal point, so if you are stress-testing your solution locally, make sure that you also perform the corresponding rounding.
输入输出样例
输入#1
? 0 -10 ? 10 -10 ? 10 0 ? 10 10 ? 10 20 ? 10 30 ! 20 10 10
输出#1
12.360679775 11.2132034356 0.0 0.0 3.416407865 5.8113883008
说明/提示
Illustration of the queries from the example interaction.