CF1327C.Game with Chips

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Petya has a rectangular Board of size n×mn \times m . Initially, kk chips are placed on the board, ii -th chip is located in the cell at the intersection of sxisx_i -th row and syisy_i -th column.

In one action, Petya can move all the chips to the left, right, down or up by 11 cell.

If the chip was in the (x,y)(x, y) cell, then after the operation:

  • left, its coordinates will be (x,y1)(x, y - 1) ;
  • right, its coordinates will be (x,y+1)(x, y + 1) ;
  • down, its coordinates will be (x+1,y)(x + 1, y) ;
  • up, its coordinates will be (x1,y)(x - 1, y) .

If the chip is located by the wall of the board, and the action chosen by Petya moves it towards the wall, then the chip remains in its current position.

Note that several chips can be located in the same cell.

For each chip, Petya chose the position which it should visit. Note that it's not necessary for a chip to end up in this position.

Since Petya does not have a lot of free time, he is ready to do no more than 2nm2nm actions.

You have to find out what actions Petya should do so that each chip visits the position that Petya selected for it at least once. Or determine that it is not possible to do this in 2nm2nm actions.

输入格式

The first line contains three integers n,m,kn, m, k ( 1n,m,k2001 \le n, m, k \le 200 ) — the number of rows and columns of the board and the number of chips, respectively.

The next kk lines contains two integers each sxi,syisx_i, sy_i ( $ 1 \le sx_i \le n, 1 \le sy_i \le m$ ) — the starting position of the ii -th chip.

The next kk lines contains two integers each fxi,fyifx_i, fy_i ( $ 1 \le fx_i \le n, 1 \le fy_i \le m$ ) — the position that the ii -chip should visit at least once.

输出格式

In the first line print the number of operations so that each chip visits the position that Petya selected for it at least once.

In the second line output the sequence of operations. To indicate operations left, right, down, and up, use the characters L,R,D,UL, R, D, U respectively.

If the required sequence does not exist, print -1 in the single line.

输入输出样例

  • 输入#1

    3 3 2
    1 2
    2 1
    3 3
    3 2

    输出#1

    3
    DRD
  • 输入#2

    5 4 3
    3 4
    3 1
    3 3
    5 3
    1 3
    1 4

    输出#2

    9
    DDLUUUURR
首页