1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 19:18:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/算法题(国内版)/problem (Chinese)/主题空间 [YesdPw].md

28 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

「以扣会友」线下活动所在场地由若干主题空间与走廊组成,场地的地图记作由一维字符串型数组 `grid`,字符串中仅包含 `"0""5"` 这 6 个字符。地图上每一个字符代表面积为 1 的区域,其中 `"0"` 表示走廊,其他字符表示主题空间。相同且连续(连续指上、下、左、右四个方向连接)的字符组成同一个主题空间。
假如整个 `grid` 区域的外侧均为走廊。请问,不与走廊直接相邻的主题空间的最大面积是多少?如果不存在这样的空间请返回 `0`
**示例 1:**
>输入:`grid = ["110","231","221"]`
>
>输出:`1`
>
>解释4 个主题空间中,只有 1 个不与走廊相邻,面积为 1。
>![image.png](https://pic.leetcode-cn.com/1613708145-rscctN-image.png)
**示例 2:**
>输入:`grid = ["11111100000","21243101111","21224101221","11111101111"]`
>
>输出:`3`
>
>解释8 个主题空间中,有 5 个不与走廊相邻,面积分别为 3、1、1、1、2最大面积为 3。
>![image.png](https://pic.leetcode-cn.com/1613707985-KJyiXJ-image.png)
**提示:**
- `1 <= grid.length <= 500`
- `1 <= grid[i].length <= 500`
- `grid[i][j]` 仅可能是 `"0""5"`