#abc246b. B - Get Closer
B - Get Closer
Score : points
问题描述
在二维平面上,从点 出发,沿向量指向点 移动距离为 。求移动后我们的坐标位置。
这里需要注意的是,从点 向点 移动距离为 (其中 线段 的长度)时,我们将到达线段 上距 点距离恰好为 的那个点。
约束条件保证了点 和点 之间的距离至少为 。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
From the point in a two-dimensional plane, let us move the distance of toward the point . Find our coordinates after the move.
Here, after moving the distance of from a point to a point ( length of the segment ), we are at the point on the segment whose distance from is .
The Constraints guarantee that the distance between the points and is at least .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Let be our coordinates after the move. Print and in this order, separated by a space.
Your output is considered correct when, for each printed value, the absolute or relative error from the judge's answer is at most .
Sample Input 1
3 4
Sample Output 1
0.600000000000 0.800000000000
Printing 0.5999999999 0.8000000001
, for example, would also be accepted.
Sample Input 2
1 0
Sample Output 2
1.000000000000 0.000000000000
We may arrive at .
Sample Input 3
246 402
Sample Output 3
0.521964870245 0.852966983083
update @ 2024/3/10 10:33:03