CF1817D.Toy Machine

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is a toy machine with toys arranged in two rows of nn cells each ( nn is odd).

Initial state for n=9n=9 .Initially, n2n-2 toys are placed in the non-corner cells of the top row. The bottom row is initially empty, and its leftmost, rightmost, and central cells are blocked. There are 44 buttons to control the toy machine: left, right, up, and down marked by the letters L, R, U, and D correspondingly.

When pressing L, R, U, or D, all the toys will be moved simultaneously in the corresponding direction and will only stop if they push into another toy, the wall or a blocked cell. Your goal is to move the kk -th toy into the leftmost cell of the top row. The toys are numbered from 11 to n2n-2 from left to right. Given nn and kk , find a solution that uses at most 10000001\,000\,000 button presses.

To test out the toy machine, a web page is available that lets you play the game in real time.

输入格式

The first and only line contains two integers, nn and kk ( 5n1000005 \le n \le 100\,000 , nn is odd, 1kn21 \le k \le n-2 ) — the number of cells in a row, and the index of the toy that has to be moved to the leftmost cell of the top row.

输出格式

On a single line, output a description of the button presses as a string of at most 10000001\,000\,000 characters. The string should only contain the characters L, R, U, and D. The ii -th character in the string is the ii -th button that is pressed. After all the button presses are performed, the kk -th toy should be in the leftmost cell of the top row.

If there are multiple solutions, print any. The number of button presses does not have to be minimized.

输入输出样例

  • 输入#1

    5 1

    输出#1

    RDL
  • 输入#2

    7 2

    输出#2

    RDL

说明/提示

In the first example, there will be 52=35-2 = 3 toys. The first toy needs to end up in the leftmost cell of the top row. The moves RDL will achieve this, see the picture for a better understanding. Another possible solution would be to do one button press L.

Visualization of the moves for the first example.

首页