A16370 | Mischievous Shooter
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Once the mischievous and wayward shooter named Shel found himself on a rectangular field of size $n \times m$ , divided into unit squares. Each cell either contains a target or not.
Shel only had a lucky shotgun with him, with which he can shoot in one of the four directions: right-down, left-down, left-up, or right-up. When fired, the shotgun hits all targets in the chosen direction, the Manhattan distance to which does not exceed a fixed constant $k$ . The Manhattan distance between two points $(x_1, y_1)$ and $(x_2, y_2)$ is equal to $|x_1 - x_2| + |y_1 - y_2|$ .
 Possible hit areas for $k = 3$ .Shel's goal is to hit as many targets as possible. Please help him find this value.
Shel only had a lucky shotgun with him, with which he can shoot in one of the four directions: right-down, left-down, left-up, or right-up. When fired, the shotgun hits all targets in the chosen direction, the Manhattan distance to which does not exceed a fixed constant $k$ . The Manhattan distance between two points $(x_1, y_1)$ and $(x_2, y_2)$ is equal to $|x_1 - x_2| + |y_1 - y_2|$ .
 Possible hit areas for $k = 3$ .Shel's goal is to hit as many targets as possible. Please help him find this value.
输入格式
Each test consists of several test cases. The first line contains a single integer $t$ ( $1 \le t \le 1000$ ) — the number of test cases. Then follows the description of the test cases.
The first line of each test case contains field dimensions $n$ , $m$ , and the constant for the shotgun's power $k$ ( $1 \le n, m, k \le 10^5, 1 \le n \cdot m \le 10^5$ ).
Each of the next $n$ lines contains $m$ characters — the description of the next field row, where the character '.' means the cell is empty, and the character '\#' indicates the presence of a target.
It is guaranteed that the sum of $n \cdot m$ over all test cases does not exceed $10^5$ .
The first line of each test case contains field dimensions $n$ , $m$ , and the constant for the shotgun's power $k$ ( $1 \le n, m, k \le 10^5, 1 \le n \cdot m \le 10^5$ ).
Each of the next $n$ lines contains $m$ characters — the description of the next field row, where the character '.' means the cell is empty, and the character '\#' indicates the presence of a target.
It is guaranteed that the sum of $n \cdot m$ over all test cases does not exceed $10^5$ .
输出格式
For each test case, output a single integer on a separate line, which is equal to the maximum possible number of hit targets with one shot.
输入输出样例
输入 #1
4 3 3 1 .#. ### .#. 2 5 3 ###.. ...## 4 4 2 ..## ###. #..# #### 2 1 3 # #
输出 #1
3 4 5 2
Possible optimal shots for the examples in the statement:


C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted