B. African Crossword http://codeforces.com/problemset/problem/90%2FB time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output
把每行,每列提出来,如果中间有障碍物,把障碍物作为分格。遍历每行里的连续(被障碍隔开的部分)的空间,如果长度和word一样,且出现字符的位置和word出字符的位置一样,则返回true,注意无论是顺着word还是逆序出现的word字符,都可以判定为true。 同时注意for else用法。 class Solution:def placeWordInCrossword(self, board: L