A10605 | Spotlights
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Theater stage is a rectangular field of size $n×m$ . The director gave you the stage's plan which actors will follow. For each cell it is stated in the plan if there would be an actor in this cell or not.
You are to place a spotlight on the stage in some good position. The spotlight will project light in one of the four directions (if you look at the stage from above) — left, right, up or down. Thus, the spotlight's position is a cell it is placed to and a direction it shines.
A position is good if two conditions hold:
- there is no actor in the cell the spotlight is placed to;
- there is at least one actor in the direction the spotlight projects.
Count the number of good positions for placing the spotlight. Two positions of spotlight are considered to be different if the location cells or projection direction differ.
You are to place a spotlight on the stage in some good position. The spotlight will project light in one of the four directions (if you look at the stage from above) — left, right, up or down. Thus, the spotlight's position is a cell it is placed to and a direction it shines.
A position is good if two conditions hold:
- there is no actor in the cell the spotlight is placed to;
- there is at least one actor in the direction the spotlight projects.
Count the number of good positions for placing the spotlight. Two positions of spotlight are considered to be different if the location cells or projection direction differ.
输入格式
The first line contains two positive integers $n$ and $m$ ( $1<=n,m<=1000$ ) — the number of rows and the number of columns in the plan.
The next $n$ lines contain $m$ integers, $0$ or $1$ each — the description of the plan. Integer $1$ , means there will be an actor in the corresponding cell, while $0$ means the cell will remain empty. It is guaranteed that there is at least one actor in the plan.
The next $n$ lines contain $m$ integers, $0$ or $1$ each — the description of the plan. Integer $1$ , means there will be an actor in the corresponding cell, while $0$ means the cell will remain empty. It is guaranteed that there is at least one actor in the plan.
输出格式
Print one integer — the number of good positions for placing the spotlight.
输入输出样例
输入 #1
2 4 0 1 0 0 1 0 1 0
输出 #1
9
输入 #2
4 4 0 0 0 0 1 0 0 1 0 1 1 0 0 1 0 0
输出 #2
20
In the first example the following positions are good:
1. the (1, 1) cell and right direction;
2. the (1, 1) cell and down direction;
3. the (1, 3) cell and left direction;
4. the (1, 3) cell and down direction;
5. the (1, 4) cell and left direction;
6. the (2, 2) cell and left direction;
7. the (2, 2) cell and up direction;
8. the (2, 2) and right direction;
9. the (2, 4) cell and left direction.
Therefore, there are $9$ good positions in this example.
1. the (1, 1) cell and right direction;
2. the (1, 1) cell and down direction;
3. the (1, 3) cell and left direction;
4. the (1, 3) cell and down direction;
5. the (1, 4) cell and left direction;
6. the (2, 2) cell and left direction;
7. the (2, 2) cell and up direction;
8. the (2, 2) and right direction;
9. the (2, 4) cell and left direction.
Therefore, there are $9$ good positions in this example.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted