CF1301D.Time to Run

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Bashar was practicing for the national programming contest. Because of sitting too much in front of the computer without doing physical movements and eating a lot Bashar became much fatter. Bashar is going to quit programming after the national contest and he is going to become an actor (just like his father), so he should lose weight.

In order to lose weight, Bashar is going to run for kk kilometers. Bashar is going to run in a place that looks like a grid of nn rows and mm columns. In this grid there are two one-way roads of one-kilometer length between each pair of adjacent by side cells, one road is going from the first cell to the second one, and the other road is going from the second cell to the first one. So, there are exactly (4nm2n2m)(4 n m - 2n - 2m) roads.

Let's take, for example, n=3n = 3 and m=4m = 4 . In this case, there are 3434 roads. It is the picture of this case (arrows describe roads):

Bashar wants to run by these rules:

  • He starts at the top-left cell in the grid;
  • In one move Bashar may go up (the symbol 'U'), down (the symbol 'D'), left (the symbol 'L') or right (the symbol 'R'). More formally, if he stands in the cell in the row ii and in the column jj , i.e. in the cell (i,j)(i, j) he will move to:
    • in the case 'U' to the cell (i1,j)(i-1, j) ;
    • in the case 'D' to the cell (i+1,j)(i+1, j) ;
    • in the case 'L' to the cell (i,j1)(i, j-1) ;
    • in the case 'R' to the cell (i,j+1)(i, j+1) ;
  • He wants to run exactly kk kilometers, so he wants to make exactly kk moves;
  • Bashar can finish in any cell of the grid;
  • He can't go out of the grid so at any moment of the time he should be on some cell;
  • Bashar doesn't want to get bored while running so he must not visit the same road twice. But he can visit the same cell any number of times.

Bashar asks you if it is possible to run by such rules. If it is possible, you should tell him how should he run.

You should give him aa steps to do and since Bashar can't remember too many steps, aa should not exceed 30003000 . In every step, you should give him an integer ff and a string of moves ss of length at most 44 which means that he should repeat the moves in the string ss for ff times. He will perform the steps in the order you print them.

For example, if the steps are 22 RUD, 33 UUL then the moves he is going to move are RUD ++ RUD ++ UUL ++ UUL ++ UUL == RUDRUDUULUULUUL.

Can you help him and give him a correct sequence of moves such that the total distance he will run is equal to kk kilometers or say, that it is impossible?

输入格式

The only line contains three integers nn , mm and kk ( 1n,m5001 \leq n, m \leq 500 , 1k1091 \leq k \leq 10 ^{9} ), which are the number of rows and the number of columns in the grid and the total distance Bashar wants to run.

输出格式

If there is no possible way to run kk kilometers, print "NO" (without quotes), otherwise print "YES" (without quotes) in the first line.

If the answer is "YES", on the second line print an integer aa ( 1a30001 \leq a \leq 3000 ) — the number of steps, then print aa lines describing the steps.

To describe a step, print an integer ff ( 1f1091 \leq f \leq 10^{9} ) and a string of moves ss of length at most 44 . Every character in ss should be 'U', 'D', 'L' or 'R'.

Bashar will start from the top-left cell. Make sure to move exactly kk moves without visiting the same road twice and without going outside the grid. He can finish at any cell.

We can show that if it is possible to run exactly kk kilometers, then it is possible to describe the path under such output constraints.

输入输出样例

  • 输入#1

    3 3 4

    输出#1

    YES
    2
    2 R
    2 L
  • 输入#2

    3 3 1000000000

    输出#2

    NO
  • 输入#3

    3 3 8

    输出#3

    YES
    3
    2 R
    2 D
    1 LLRR
  • 输入#4

    4 4 9

    输出#4

    YES
    1
    3 RLD
  • 输入#5

    3 4 16

    输出#5

    YES
    8
    3 R
    3 L
    1 D
    3 R
    1 D
    1 U
    3 L
    1 D

说明/提示

The moves Bashar is going to move in the first example are: "RRLL".

It is not possible to run 10000000001000000000 kilometers in the second example because the total length of the roads is smaller and Bashar can't run the same road twice.

The moves Bashar is going to move in the third example are: "RRDDLLRR".

The moves Bashar is going to move in the fifth example are: "RRRLLLDRRRDULLLD". It is the picture of his run (the roads on this way are marked with red and numbered in the order of his running):

首页