
UnionFind
weixin_39145266
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
1102 Path With Maximum Minimum Value
1 题目Given amatrix of integersAwithRrows andCcolumns, findthemaximumscoreof a path starting at[0,0]and ending at[R-1,C-1].Thescoreof a path is theminimumvalue in that path. For e...原创 2019-12-20 14:06:51 · 217 阅读 · 0 评论 -
130 Surrounded Regions
1 题目Given a 2D board containing 'X' and 'O' (the letter O), capture all regions surrounded by 'X'.A region is captured by flipping all 'O's into 'X's in that surrounded region.Example:X X X X...原创 2019-04-12 16:47:17 · 149 阅读 · 0 评论