Robot Arms

AtCoder
IDarc103_b
Time2000ms
Memory256MB
Difficulty
Snuke is introducing a **robot arm** with the following properties to his factory: * The robot arm consists of $m$ **sections** and $m+1$ **joints**. The sections are numbered $1$, $2$, ..., $m$, and the joints are numbered $0$, $1$, ..., $m$. Section $i$ connects Joint $i-1$ and Joint $i$. The length of Section $i$ is $d_i$. * For each section, its **mode** can be specified individually. There are four modes: `L`, `R`, `D` and `U`. The mode of a section decides the direction of that section. If we consider the factory as a coordinate plane, the position of Joint $i$ will be determined as follows (we denote its coordinates as $(x_i, y_i)$): * $(x_0, y_0) = (0, 0)$. * If the mode of Section $i$ is `L`, $(x_{i}, y_{i}) = (x_{i-1} - d_{i}, y_{i-1})$. * If the mode of Section $i$ is `R`, $(x_{i}, y_{i}) = (x_{i-1} + d_{i}, y_{i-1})$. * If the mode of Section $i$ is `D`, $(x_{i}, y_{i}) = (x_{i-1}, y_{i-1} - d_{i})$. * If the mode of Section $i$ is `U`, $(x_{i}, y_{i}) = (x_{i-1}, y_{i-1} + d_{i})$. Snuke would like to introduce a robot arm so that the position of Joint $m$ can be matched with all of the $N$ points $(X_1, Y_1), (X_2, Y_2), ..., (X_N, Y_N)$ by properly specifying the modes of the sections. Is this possible? If so, find such a robot arm and how to bring Joint $m$ to each point $(X_j, Y_j)$. ## Constraints * All values in input are integers. * $1 \leq N \leq 1000$ * $-10^9 \leq X_i \leq 10^9$ * $-10^9 \leq Y_i \leq 10^9$ ## Input Input is given from Standard Input in the following format: $N$ $X_1$ $Y_1$ $X_2$ $Y_2$ $:$ $X_N$ $Y_N$ ## Partial Score * In the test cases worth $300$ points, $-10 \leq X_i \leq 10$ and $-10 \leq Y_i \leq 10$ hold. [samples]
Samples
Input #1
3
-1 0
0 3
2 -1
Output #1
2
1 2
RL
UU
DR

In the given way to bring Joint $m$ of the robot arm to each $(X_j, Y_j)$, the positions of the joints will be as follows:

*   To $(X_1, Y_1) = (-1, 0)$: First, the position of Joint $0$ is $(x_0, y_0) = (0, 0)$. As the mode of Section $1$ is `R`, the position of Joint $1$ is $(x_1, y_1) = (1, 0)$. Then, as the mode of Section $2$ is `L`, the position of Joint $2$ is $(x_2, y_2) = (-1, 0)$.
*   To $(X_2, Y_2) = (0, 3)$: $(x_0, y_0) = (0, 0), (x_1, y_1) = (0, 1), (x_2, y_2) = (0, 3)$.
*   To $(X_3, Y_3) = (2, -1)$: $(x_0, y_0) = (0, 0), (x_1, y_1) = (0, -1), (x_2, y_2) = (2, -1)$.
Input #2
5
0 0
1 0
2 0
3 0
4 0
Output #2
\-1
Input #3
2
1 1
1 1
Output #3
2
1 1
RU
UR

There may be duplicated points among $(X_j, Y_j)$.
Input #4
3
-7 -3
7 3
-3 -7
Output #4
5
3 1 4 1 5
LRDUL
RDULR
DULRD
API Response (JSON)
{
  "problem": {
    "name": "Robot Arms",
    "description": {
      "content": "Snuke is introducing a **robot arm** with the following properties to his factory: *   The robot arm consists of $m$ **sections** and $m+1$ **joints**. The sections are numbered $1$, $2$, ..., $m$, a",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "arc103_b"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Snuke is introducing a **robot arm** with the following properties to his factory:\n\n*   The robot arm consists of $m$ **sections** and $m+1$ **joints**. The sections are numbered $1$, $2$, ..., $m$, a...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments