B. Fix You

Consider a conveyor belt represented using a grid consisting of n rows and m columns. The cell in the i-th row from the top and the j-th column from the left is labelled (i,j).
Every cell, except (n,m), has a direction R (Right) or D (Down) assigned to it. If the cell (i,j) is assigned direction R, any luggage kept on that will move to the cell (i,j+1). Similarly, if the cell (i,j) is assigned direction D, any luggage kept on that will move to the cell (i+1,j). If at any moment, the luggage moves out of the grid, it is considered to be lost.

There is a counter at the cell (n,m) from where all luggage is picked. A conveyor belt is called functional if and only if any luggage reaches the counter regardless of which cell it is placed in initially. More formally, for every cell (i,j), any luggage placed in this cell should eventually end up in the cell (n,m).

This may not hold initially; you are, however, allowed to change the directions of some cells to make the conveyor belt functional. Please determine the minimum amount of cells you have to change.

Please note that it is always possible to make any conveyor belt functional by changing the directions of some set of cells.
Input

Each test contains multiple test cases. The first line contains the number of test cases t
(1≤t≤10). Description of the test cases follows.

The first line of each test case contains two integers n,m(1≤n≤100, 1≤m≤100) — the number of rows and columns, respectively.

The following n lines each contain m characters. The j-th character in the i-th line, ai,j is the initial direction of the cell (i,j). Please note that an,m=C.
Output

For each case, output in a new line the minimum number of cells that you have to change to make the conveyor belt functional.
Example
Input
Copy

4
3 3
RRD
DDR
RRC
1 4
DDDC
6 9
RDDDDDRRR
RRDDRRDDD
RRDRDRRDR
DDDDRDDRR
DRRDRDDDR
DDRDRRDDC
1 1
C

Output
Copy

1
3
9
0

Note

In the first case, just changing the direction of (2,3) to D is enough.

You can verify that the resulting belt is functional. For example, if we place any luggage at (2,2)
, it first moves to (3,2) and then to (3,3).

In the second case, we have no option but to change the first 3 cells from D to R making the grid equal to RRRC.

#include<iostream>
#include<cstring>
using namespace std;
int main()
{
	int t;
	cin>>t;
	while(t--)
	{
		string s[110];
		int n,m,cnt=0;
		cin>>n>>m;
		for(int i=1;i<=n;i++) cin>>s[i];
		for(int i=0;i<m;i++) 
		{
			if(s[n][i]=='D') cnt++;
		}
		for(int i=1;i<=n;i++)
		{
			if(s[i][m-1]=='R') cnt++;
		}
		cout<<cnt<<endl;
	}
	return 0;
 } 
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值