CF538G.Berserk Robot
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Help! A robot escaped our lab and we need help finding it.
The lab is at the point (0,0) of the coordinate plane, at time 0 the robot was there. The robot's movements are defined by a program — a string of length l , consisting of characters U, L, D, R. Each second the robot executes the next command in his program: if the current coordinates of the robot are (x,y) , then commands U, L, D, R move it to cells (x,y+1) , (x−1,y) , (x,y−1) , (x+1,y) respectively. The execution of the program started at time 0. The program is looped, i.e. each l seconds of executing the program start again from the first character. Unfortunately, we don't know what program was loaded into the robot when he left the lab.
Our radars managed to find out the position of the robot at n moments of time: we know that at the moment of time ti the robot is at the point (xi,yi) . Given this data, either help to determine what program could be loaded into the robot, or determine that no possible program meets the data and the robot must have broken down.
输入格式
The first line of the input contains two space-separated integers n and l ( 1<=n<=2⋅105 , 1<=l<=2⋅106 ).
Next n lines contain three space-separated integers — ti , xi , yi ( 1<=ti<=1018 , −1018<=xi,yi<=1018 ). The radar data is given chronologically, i.e. t_{i}<t_{i+1} for all i from 1 to n−1 .
输出格式
Print any of the possible programs that meet the data. If no program meets the data, print a single word 'NO' (without the quotes).
输入输出样例
输入#1
3 3 1 1 0 2 1 -1 3 0 -1
输出#1
RDL
输入#2
2 2 1 1 0 999 1 0
输出#2
RL
输入#3
2 5 10 10 0 20 0 0
输出#3
NO