1953: Spotlights
[Creator : ]
Description
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 somegoodposition. 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:
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.
Input
The first line contains two positive integers $n, 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 desc
Output
Print one integer− the number of good positions for placing the spotlight.
Sample 1 Input
2 4
0 1 0 0
1 0 1 0
Sample 1 Output
9
The following positions are good:
- the (1, 1) cell and right direction;
- the (1, 1) cell and down direction;
- the (1, 3) cell and left direction;
- the (1, 3) cell and down direction;
- the (1, 4) cell and left direction;
- the (2, 2) cell and left direction;
- the (2, 2) cell and up direction;
- the (2, 2) and right direction;
- the (2, 4) cell and left direction.
Sample 2 Input
4 4
0 0 0 0
1 0 0 1
0 1 1 0
0 1 0 0
Sample 2 Output
20