A13580 | Fix You
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 10$ ). Description of the test cases follows.
The first line of each test case contains two integers $n, m$ ( $1 \le n \le 100$ , $1 \le m \le 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, $a_{i,j}$ is the initial direction of the cell $(i, j)$ . Please note that $a_{n,m}=$ C.
The first line of each test case contains two integers $n, m$ ( $1 \le n \le 100$ , $1 \le m \le 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, $a_{i,j}$ is the initial direction of the cell $(i, j)$ . Please note that $a_{n,m}=$ C.
输出格式
For each case, output in a new line the minimum number of cells that you have to change to make the conveyor belt functional.
输入输出样例
输入 #1
4 3 3 RRD DDR RRC 1 4 DDDC 6 9 RDDDDDRRR RRDDRRDDD RRDRDRRDR DDDDRDDRR DRRDRDDDR DDRDRRDDC 1 1 C
输出 #1
1 3 9 0
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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted