750. 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.

Example 1:

Input: grid =
[[1, 0, 0, 1, 0],
[0, 0, 1, 0, 1],
[0, 0, 0, 1, 0],
[1, 0, 1, 0, 1]]
Output: 1
Explanation: There is only one corner rectangle, with corners grid[1][2], grid[1][4], grid[3][2], grid[3][4].

Example 2:

Input: grid =
[[1, 1, 1],
[1, 1, 1],
[1, 1, 1]]
Output: 9
Explanation: There are four 2x2 rectangles, four 2x3 and 3x2 rectangles, and one 3x3 rectangle.

Example 3:

Input: grid =
[[1, 1, 1, 1]]
Output: 0
Explanation: Rectangles must have four distinct corners.

Note:

  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.

Solution

HashMap, time O(m * n ^ 2), space O(n ^ 2)

We ask the question: for each additional row, how many more rectangles are added?

For each pair of 1s in the new row (say at new_row[i] and new_row[j]), we could create more rectangles where that pair forms the base. The number of new rectangles is the number of times some previous row had row[i] = row[j] = 1.

Algorithm

Let's maintain a count count[i, j], the number of times we saw row[i] = row[j] = 1. When we process a new row, for every pair new_row[i] = new_row[j] = 1, we add count[i, j] to the answer, then we increment count[i, j].

此外,為了方便判斷兩個(gè)pair(i, j)是否相等,可以用一維i * n + j 來(lái)表示pair。

class Solution {
    public int countCornerRectangles(int[][] grid) {
        Map<Integer, Integer> idx2Count = new HashMap<>();
        int rectangles = 0;
        int n = grid[0].length;
        
        for (int[] row : grid) {
            for (int col0 = 0; col0 < n - 1; ++col0) {
                if (row[col0] != 1) {
                    continue;
                }
                
                for (int col1 = col0 + 1; col1 < n; ++col1) {
                    if (row[col1] != 1) {
                        continue;
                    }
                    
                    int idx = getIndex(col0, col1, n);
                    int count = idx2Count.getOrDefault(idx, 0);
                    rectangles += count;
                    idx2Count.put(idx, count + 1);
                }
            }
        }
        
        return rectangles;
    }
    
    private int getIndex(int i, int j, int n) {
        return i * n + j;
    }
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀(guān)點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi閱讀 7,861評(píng)論 0 10
  • 現(xiàn)在夜深了,我竟一點(diǎn)睡意也沒(méi)有。突然想起來(lái)10多年前,我還很小,同奶奶一起在院子里乘涼。 那個(gè)時(shí)候啊,沒(méi)有那么多高...
    白阿暖啊閱讀 436評(píng)論 0 0
  • 有段日子沒(méi)有跟佩佩聯(lián)系 今天跟佩佩聊天 才知道原來(lái)她媽媽的癌細(xì)胞轉(zhuǎn)移 難道是自己太冷血了 還是佩佩的語(yǔ)氣太平和 聽(tīng)...
    瓊語(yǔ)閱讀 256評(píng)論 0 0
  • 盆友要叫我粗去玩去,我說(shuō)留著錢(qián)找妹子多好。他說(shuō)他是老司機(jī),穩(wěn)。哈哈~我說(shuō)你老司機(jī)就開(kāi)過(guò)一次夜車(chē)還是酒駕,那種斷片的哈哈
    雞蛋只吃七分熟閱讀 224評(píng)論 0 1

友情鏈接更多精彩內(nèi)容