CF1481A.Space Navigation

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

Space Navigation

You were dreaming that you are traveling to a planet named Planetforces on your personal spaceship. Unfortunately, its piloting system was corrupted and now you need to fix it in order to reach Planetforces.

Space can be represented as the XYXY plane. You are starting at point (0,0)(0, 0), and Planetforces is located in point (px,py)(p_x, p_y).

The piloting system of your spaceship follows its list of orders which can be represented as a string ss. The system reads ss from left to right. Suppose you are at point (x,y)(x, y) and current order is sis_i:

  • if si=Us_i = \text{U}, you move to (x,y+1)(x, y + 1);
  • if si=Ds_i = \text{D}, you move to (x,y1)(x, y - 1);
  • if si=Rs_i = \text{R}, you move to (x+1,y)(x + 1, y);
  • if si=Ls_i = \text{L}, you move to (x1,y)(x - 1, y).

Since string ss could be corrupted, there is a possibility that you won't reach Planetforces in the end. Fortunately, you can delete some orders from ss but you can't change their positions.

Can you delete several orders (possibly, zero) from ss in such a way, that you'll reach Planetforces after the system processes all orders?

Input

The first line contains a single integer tt (1t10001 \le t \le 1000) — the number of test cases.

Each test case consists of two lines. The first line in each test case contains two integers pxp_x and pyp_y (105px,py105-10^5 \le p_x, p_y \le 10^5; (px,py)(0,0)(p_x, p_y) \neq (0, 0)) — the coordinates of Planetforces (px,py)(p_x, p_y).

The second line contains the string ss (1s1051 \le |s| \le 10^5: s|s| is the length of string ss) — the list of orders.

It is guaranteed that the sum of s|s| over all test cases does not exceed 10510^5.

Output

For each test case, print "YES" if you can delete several orders (possibly, zero) from ss in such a way, that you'll reach Planetforces. Otherwise, print "NO". You can print each letter in any case (upper or lower).

Note

In the first case, you don't need to modify ss, since the given ss will bring you to Planetforces.

In the second case, you can delete orders s2s_2, s3s_3, s4s_4, s6s_6, s7s_7 and s8s_8, so ss becomes equal to "UR".

In the third test case, you have to delete order s9s_9, otherwise, you won't finish in the position of Planetforces.

Samples

6
10 5
RRRRRRRRRRUUUUU
1 1
UDDDRLLL
-3 -5
LDLDLDDDR
1 2
LLLLUU
3 -2
RDULRLLDR
-1 6
RUDURUUUUR
YES
YES
YES
NO
YES
NO

在线编程 IDE

建议全屏模式获得最佳体验