947.Most-Stones-Removed-with-Same-Row-or-Column

947. Most Stones Removed with Same Row or Column

题目地址

https://leetcode.com/problems/most-stones-removed-with-same-row-or-column/

题目描述

On a 2D plane, we place stones at some integer coordinate points.  Each coordinate point may have at most one stone.

Now, a move consists of removing a stone that shares a column or row with another stone on the grid.

What is the largest possible number of moves we can make?

Example 1:
Input: stones = [[0,0],[0,1],[1,0],[1,2],[2,1],[2,2]]
Output: 5

Example 2:
Input: stones = [[0,0],[0,2],[1,1],[2,0],[2,2]]
Output: 3

Example 3:
Input: stones = [[0,0]]
Output: 0

Note:
1 <= stones.length <= 1000
0 <= stones[i][j] < 10000

代码

Approach #2 Union-Find

Time O(N log N) Space O(N)

Appraoch #3 DFS number of islands

Approach #4 BFS

Find connected components, with some specific connected component, the remove count is Num of elements - 1

Approach #1 DFS

Time: O(N^2) && Space: O(N^2)

Last updated

Was this helpful?