-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c0423fa
commit 4e45c5d
Showing
1 changed file
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
class DisjointSet { | ||
|
||
public: | ||
vector<int> rank, parent, size; | ||
DisjointSet(int n) { | ||
rank.resize(n + 1, 0); | ||
parent.resize(n + 1); | ||
size.resize(n + 1); | ||
for (int i = 0; i <= n; i++) { | ||
parent[i] = i; | ||
size[i] = 1; | ||
} | ||
} | ||
|
||
int findUPar(int node) { | ||
if (node == parent[node]) | ||
return node; | ||
return parent[node] = findUPar(parent[node]); | ||
} | ||
|
||
void unionByRank(int u, int v) { | ||
int ulp_u = findUPar(u); | ||
int ulp_v = findUPar(v); | ||
if (ulp_u == ulp_v) return; | ||
if (rank[ulp_u] < rank[ulp_v]) { | ||
parent[ulp_u] = ulp_v; | ||
} | ||
else if (rank[ulp_v] < rank[ulp_u]) { | ||
parent[ulp_v] = ulp_u; | ||
} | ||
else { | ||
parent[ulp_v] = ulp_u; | ||
rank[ulp_u]++; | ||
} | ||
} | ||
|
||
void unionBySize(int u, int v) { | ||
int ulp_u = findUPar(u); | ||
int ulp_v = findUPar(v); | ||
if (ulp_u == ulp_v) return; | ||
if (size[ulp_u] < size[ulp_v]) { | ||
parent[ulp_u] = ulp_v; | ||
size[ulp_v] += size[ulp_u]; | ||
} | ||
else { | ||
parent[ulp_v] = ulp_u; | ||
size[ulp_u] += size[ulp_v]; | ||
} | ||
} | ||
}; | ||
|
||
|
||
class Solution { | ||
private: | ||
bool isValid(int nrow,int ncol,int n){ | ||
return nrow>=0 && nrow<n && ncol>=0 && ncol<n; | ||
} | ||
public: | ||
int largestIsland(vector<vector<int>>& grid) { | ||
int n = grid.size(); | ||
DisjointSet ds(n * n); | ||
// step - 1 | ||
for (int row = 0; row < n ; row++) { | ||
for (int col = 0; col < n ; col++) { | ||
if (grid[row][col] == 0) continue; | ||
int dr[] = { -1, 0, 1, 0}; | ||
int dc[] = {0, -1, 0, 1}; | ||
for (int ind = 0; ind < 4; ind++) { | ||
int newr = row + dr[ind]; | ||
int newc = col + dc[ind]; | ||
if (isValid(newr, newc, n) && grid[newr][newc] == 1) { | ||
int nodeNo = row * n + col; | ||
int adjNodeNo = newr * n + newc; | ||
ds.unionBySize(nodeNo, adjNodeNo); | ||
} | ||
} | ||
} | ||
} | ||
// step 2 | ||
int mx = 0; | ||
for (int row = 0; row < n; row++) { | ||
for (int col = 0; col < n; col++) { | ||
if (grid[row][col] == 1) continue; | ||
int dr[] = { -1, 0, 1, 0}; | ||
int dc[] = {0, -1, 0, 1}; | ||
set<int> components; | ||
for (int ind = 0; ind < 4; ind++) { | ||
int newr = row + dr[ind]; | ||
int newc = col + dc[ind]; | ||
if (isValid(newr, newc, n)) { | ||
if (grid[newr][newc] == 1) { | ||
components.insert(ds.findUPar(newr * n + newc)); | ||
} | ||
} | ||
} | ||
int sizeTotal = 0; | ||
for (auto it : components) { | ||
sizeTotal += ds.size[it]; | ||
} | ||
mx = max(mx, sizeTotal + 1); | ||
} | ||
} | ||
for (int cellNo = 0; cellNo < n * n; cellNo++) { | ||
mx = max(mx, ds.size[ds.findUPar(cellNo)]); | ||
} | ||
return mx; | ||
} | ||
}; |