website/content.en/ChapterFour/0500~0599/0547.Number-of-Provinces.md
There are N students in a class. Some of them are friends, while some are not. Their friendship is transitive in nature. For example, if A is a direct friend of B, and B is a directfriend of C, then A is an indirect friend of C. And we defined a friend circle is a group of students who are direct or indirect friends.
Given a N*N matrix M representing the friend relationship between students in the class. If M[i][j] = 1, then the ith and jth students are direct friends with each other, otherwise not. And you have to output the total number of friend circles among all the students.
Example 1:
Input:
[[1,1,0],
[1,1,0],
[0,0,1]]
Output: 2
Explanation:The 0th and 1st students are direct friends, so they are in a friend circle.
The 2nd student himself is in a friend circle. So return 2.
Example 2:
Input:
[[1,1,0],
[1,1,1],
[0,1,1]]
Output: 1
Explanation:The 0th and 1st students are direct friends, the 1st and 2nd students are direct friends,
so the 0th and 2nd students are indirect friends. All of them are in the same friend circle, so return 1.
Note:
There are N students in a class. Some of them are friends, while some are not. Their friendship is transitive. If it is known that A is a friend of B, and B is a friend of C, then we can consider A to also be a friend of C. A so-called friend circle refers to the set of all friends.
Given an N * N matrix M representing the friend relationships between students in the class. If M[i][j] = 1, it means the ith and jth students are known to be friends with each other; otherwise, it is unknown. You must output the total number of known friend circles among all the students.
Note:
package leetcode
import (
"github.com/halfrost/leetcode-go/template"
)
// Solution 1: Union Find
func findCircleNum(M [][]int) int {
n := len(M)
if n == 0 {
return 0
}
uf := template.UnionFind{}
uf.Init(n)
for i := 0; i < n; i++ {
for j := 0; j <= i; j++ {
if M[i][j] == 1 {
uf.Union(i, j)
}
}
}
return uf.TotalCount()
}
// Solution 2: FloodFill DFS brute-force solution
func findCircleNum1(M [][]int) int {
if len(M) == 0 {
return 0
}
visited := make([]bool, len(M))
res := 0
for i := range M {
if !visited[i] {
dfs547(M, i, visited)
res++
}
}
return res
}
func dfs547(M [][]int, cur int, visited []bool) {
visited[cur] = true
for j := 0; j < len(M[cur]); j++ {
if !visited[j] && M[cur][j] == 1 {
dfs547(M, j, visited)
}
}
}