A13312 | Count Subrectangles
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an array $a$ of length $n$ and array $b$ of length $m$ both consisting of only integers $0$ and $1$ . Consider a matrix $c$ of size $n \times m$ formed by following rule: $c_{i, j} = a_i \cdot b_j$ (i.e. $a_i$ multiplied by $b_j$ ). It's easy to see that $c$ consists of only zeroes and ones too.
How many subrectangles of size (area) $k$ consisting only of ones are there in $c$ ?
A subrectangle is an intersection of a consecutive (subsequent) segment of rows and a consecutive (subsequent) segment of columns. I.e. consider four integers $x_1, x_2, y_1, y_2$ ( $1 \le x_1 \le x_2 \le n$ , $1 \le y_1 \le y_2 \le m$ ) a subrectangle $c[x_1 \dots x_2][y_1 \dots y_2]$ is an intersection of the rows $x_1, x_1+1, x_1+2, \dots, x_2$ and the columns $y_1, y_1+1, y_1+2, \dots, y_2$ .
The size (area) of a subrectangle is the total number of cells in it.
How many subrectangles of size (area) $k$ consisting only of ones are there in $c$ ?
A subrectangle is an intersection of a consecutive (subsequent) segment of rows and a consecutive (subsequent) segment of columns. I.e. consider four integers $x_1, x_2, y_1, y_2$ ( $1 \le x_1 \le x_2 \le n$ , $1 \le y_1 \le y_2 \le m$ ) a subrectangle $c[x_1 \dots x_2][y_1 \dots y_2]$ is an intersection of the rows $x_1, x_1+1, x_1+2, \dots, x_2$ and the columns $y_1, y_1+1, y_1+2, \dots, y_2$ .
The size (area) of a subrectangle is the total number of cells in it.
输入格式
The first line contains three integers $n$ , $m$ and $k$ ( $1 \leq n, m \leq 40\,000, 1 \leq k \leq n \cdot m$ ), length of array $a$ , length of array $b$ and required size of subrectangles.
The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $0 \leq a_i \leq 1$ ), elements of $a$ .
The third line contains $m$ integers $b_1, b_2, \ldots, b_m$ ( $0 \leq b_i \leq 1$ ), elements of $b$ .
The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $0 \leq a_i \leq 1$ ), elements of $a$ .
The third line contains $m$ integers $b_1, b_2, \ldots, b_m$ ( $0 \leq b_i \leq 1$ ), elements of $b$ .
输出格式
Output single integer — the number of subrectangles of $c$ with size (area) $k$ consisting only of ones.
输入输出样例
输入 #1
3 3 2 1 0 1 1 1 1
输出 #1
4
输入 #2
3 5 4 1 1 1 1 1 1 1 1
输出 #2
14
In first example matrix $c$ is:
There are $4$ subrectangles of size $2$ consisting of only ones in it:
In second example matrix $c$ is:

There are $4$ subrectangles of size $2$ consisting of only ones in it:
In second example matrix $c$ is:

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