Number Of Corner Rectangles(排列组合公式)
Description
Given a grid where each entry is only 0 or 1, find the number of corner rectangles.
A corner rectangle is 4 distinct 1s on the grid that form an axis-aligned rectangle. Note that only the corners need to have the value 1. Also, all four 1s used must be distinct.
1.The number of rows and columns of grid will each be in the range [1, 200]. 2.Each grid[i][j] will be either 0 or 1. 3.The number of 1s in the grid will be at most 6000.
Have you met this question in a real interview?
Yes
Example
Example 1:
Example 2:
Example 3:
分析
1 row 2条线,column遍历截断。
2 组合(Combination)时间复杂度 O(m^2 * n)
Last updated