白駿1987文字


from collections import deque
dx = [-1, 1, 0, 0]
dy = [0, 0, -1, 1]

r, c = map(int, input().split())
g = [list(input()) for _ in range(r)]
ans = 0
q = set()
q.add((0, 0, g[0][0]))
def bfs(q):
    global ans
    while q:
        x, y, visited = q.pop()
        ans = max(ans, len(visited))
        for d in range(4):
            nx, ny = x + dx[d], y + dy[d]
            if nx < 0 or nx >= r or ny < 0 or ny >= c:
                continue
            if g[nx][ny] not in visited:
                q.add((nx, ny, visited + g[nx][ny]))

bfs(q)
print(ans)
他のbfsとは異なり、check配列を作成せずにキューをセットに設定します.すべての場合、checkを使用せずにcheckを使用するのではなく、キューを集約して重複を回避します.
解決すべき問題