题库练习 Robot Arm
← 上一题 下一题 →

A10242 | Robot Arm

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Roger is a robot. He has an arm that is a series of $n$ segments connected to each other. The endpoints of the $i$ -th segment are initially located at points $(i-1,0)$ and $(i,0)$ . The endpoint at $(i-1,0)$ is colored red and the endpoint at $(i,0)$ is colored blue for all segments. Thus, the blue endpoint of the $i$ -th segment is touching the red endpoint of the $(i+1)$ -th segment for all valid $i$ .

Roger can move his arm in two different ways:

1. He can choose some segment and some value. This is denoted as choosing the segment number $i$ and picking some positive $l$ . This change happens as follows: the red endpoint of segment number $i$ and segments from $1$ to $i-1$ are all fixed in place. Imagine a ray from the red endpoint to the blue endpoint. The blue endpoint and segments $i+1$ through $n$ are translated $l$ units in the direction of this ray. ![](/uploads/luogu/CF618E/608a2bb2be5a1a38d31c7259ed31650fdc831466_05b48fbab492.png)![](/uploads/acgo/image/3e6885cf7dc3490e_964c11b4f929.jpeg)In this picture, the red point labeled $A$ and segments before $A$ stay in place, while the blue point labeled $B$ and segments after $B$ gets translated.
2. He can choose a segment and rotate it. This is denoted as choosing the segment number $i$ , and an angle $a$ . The red endpoint of the $i$ -th segment will stay fixed in place. The blue endpoint of that segment and segments $i+1$ to $n$ will rotate clockwise by an angle of $a$ degrees around the red endpoint. ![](/uploads/luogu/CF618E/4eef0bf50f3454a86a62f402644b9a2c3d461358_f3f2cce2f8d7.png)![](/uploads/acgo/image/fdecda7714519ed1_0f7766dd7fc2.jpeg)In this picture, the red point labeled $A$ and segments before $A$ stay in place, while the blue point labeled $B$ and segments after $B$ get rotated around point $A$ .

Roger will move his arm $m$ times. These transformations are a bit complicated, and Roger easily loses track of where the blue endpoint of the last segment is. Help him compute the coordinates of the blue endpoint of the last segment after applying each operation. Note that these operations are cumulative, and Roger's arm may intersect itself arbitrarily during the moves.

输入格式

The first line of the input will contain two integers $n$ and $m$ ( $1<=n,m<=300000$ ) — the number of segments and the number of operations to perform.

Each of the next $m$ lines contains three integers $x_{i}$ , $y_{i}$ and $z_{i}$ describing a move. If $x_{i}=1$ , this line describes a move of type $1$ , where $y_{i}$ denotes the segment number and $z_{i}$ denotes the increase in the length. If $x_{i}=2$ , this describes a move of type 2, where $y_{i}$ denotes the segment number, and $z_{i}$ denotes the angle in degrees. ( $1<=x_{i}<=2,1<=y_{i}<=n,1<=z_{i}<=359$ )

输出格式

Print $m$ lines. The $i$ -th line should contain two real values, denoting the coordinates of the blue endpoint of the last segment after applying operations $1,...,i$ . Your answer will be considered correct if its absolute or relative error does not exceed $10^{-4}$ .

Namely, let's assume that your answer for a particular value of a coordinate is $a$ and the answer of the jury is $b$ . The checker program will consider your answer correct if ![](/uploads/acgo/image/2260023e4de19778_d2873405e455.jpeg) for all coordinates.

输入输出样例

输入 #1
5 4
1 1 3
2 3 90
2 5 48
1 4 1
输出 #1
8.0000000000 0.0000000000
5.0000000000 -3.0000000000
4.2568551745 -2.6691306064
4.2568551745 -3.6691306064
C++ 编辑器
输入
输出