CF350C.Bombs

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You've got a robot, its task is destroying bombs on a square plane. Specifically, the square plane contains nn bombs, the ii -th bomb is at point with coordinates (xi,yi)(x_{i},y_{i}) . We know that no two bombs are at the same point and that no bomb is at point with coordinates (0,0)(0,0) . Initially, the robot is at point with coordinates (0,0)(0,0) . Also, let's mark the robot's current position as (x,y)(x,y) . In order to destroy all the bombs, the robot can perform three types of operations:

  1. Operation has format "1 k dir". To perform the operation robot have to move in direction dirdir kk ( k>=1k>=1 ) times. There are only 44 directions the robot can move in: "R", "L", "U", "D". During one move the robot can move from the current point to one of following points: (x+1,y)(x+1,y) , (x1,y)(x-1,y) , (x,y+1)(x,y+1) , (x,y1)(x,y-1) (corresponding to directions). It is forbidden to move from point (x,y)(x,y) , if at least one point on the path (besides the destination point) contains a bomb.
  2. Operation has format "2". To perform the operation robot have to pick a bomb at point (x,y)(x,y) and put it in a special container. Thus, the robot can carry the bomb from any point to any other point. The operation cannot be performed if point (x,y)(x,y) has no bomb. It is forbidden to pick a bomb if the robot already has a bomb in its container.
  3. Operation has format "3". To perform the operation robot have to take a bomb out of the container and destroy it. You are allowed to perform this operation only if the robot is at point (0,0)(0,0) . It is forbidden to perform the operation if the container has no bomb.

Help the robot and find the shortest possible sequence of operations he can perform to destroy all bombs on the coordinate plane.

输入格式

The first line contains a single integer nn ( 1<=n<=1051<=n<=10^{5} ) — the number of bombs on the coordinate plane. Next nn lines contain two integers each. The ii -th line contains numbers (xi,yi)(x_{i},y_{i}) ( 109<=xi,yi<=109-10^{9}<=x_{i},y_{i}<=10^{9} ) — the coordinates of the ii -th bomb. It is guaranteed that no two bombs are located at the same point and no bomb is at point (0,0)(0,0) .

输出格式

In a single line print a single integer kk — the minimum number of operations needed to destroy all bombs. On the next lines print the descriptions of these kk operations. If there are multiple sequences, you can print any of them. It is guaranteed that there is the solution where k<=106k<=10^{6} .

输入输出样例

  • 输入#1

    2
    1 1
    -1 -1
    

    输出#1

    12
    1 1 R
    1 1 U
    2
    1 1 L
    1 1 D
    3
    1 1 L
    1 1 D
    2
    1 1 R
    1 1 U
    3
    
  • 输入#2

    3
    5 0
    0 5
    1 0
    

    输出#2

    12
    1 1 R
    2
    1 1 L
    3
    1 5 R
    2
    1 5 L
    3
    1 5 U
    2
    1 5 D
    3
    
首页