由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - LeetCode那个surrounded regions解法不对吧?
相关主题
leetcode Surrounded Regionsleetcode pow runtime error??
来问一下leetcode Surrounded RegionsLeetcode上面的股票买卖问题2
leetcode中那道Set Matrix Zeroes怎么做leetcode 4sum N^3解法有时Time Limit Exceeded有时又能通过
ValidNumber实在是不能不服如此简洁的解法请教leetcode的gray code
LeetCode Online Judge 的答案在哪里问一下Leetcode N-Queens II与N-Queens 解法有什么不同?
挑战bug free感觉leetcode的OJ有点太偏重DP了
感觉做leetcode第二遍要慢很多呀leetcode 这题的解法是不是错了?
请版上大牛推荐类似LeetCode的网站请教一个leetcode上的题
相关话题的讨论汇总
话题: xxx话题: scan话题: meet话题: 解法话题: board
进入JobHunting版参与讨论
1 (共1页)
u*l
发帖数: 1943
1
http://discuss.leetcode.com/questions/1223/surrounded-regions
First scan the four edges of the board, if you meet an 'O', call a
recursive mark function to mark that region to something else (for example,
'+');
scan all the board, if you meet an 'O', flip it to 'X';
scan again the board, if you meet an '+', flip it to 'O';
如果是
XXX
OOX
XXX
第二个O没有被X环绕,解法里面却变为X。
r*********n
发帖数: 4553
2
不是说了是recursive mark function,意思就是从第一个O一直dfs下去找所有
connected Os
1 (共1页)
进入JobHunting版参与讨论
相关主题
请教一个leetcode上的题LeetCode Online Judge 的答案在哪里
到底我这个题leetcode 的add binary解法错在哪了??挑战bug free
Leetcode Two Sum,我这个O(n)解法为啥不讨服务器的好呢感觉做leetcode第二遍要慢很多呀
发现CC150有很多错误请版上大牛推荐类似LeetCode的网站
leetcode Surrounded Regionsleetcode pow runtime error??
来问一下leetcode Surrounded RegionsLeetcode上面的股票买卖问题2
leetcode中那道Set Matrix Zeroes怎么做leetcode 4sum N^3解法有时Time Limit Exceeded有时又能通过
ValidNumber实在是不能不服如此简洁的解法请教leetcode的gray code
相关话题的讨论汇总
话题: xxx话题: scan话题: meet话题: 解法话题: board