Given an m x n matrix board where each cell is a battleship 'X' or empty '.', return the number of the battleships on board.
Battleships can only be placed horizontally or vertically on board. In other words, they can only be made of the shape 1 x k (1 row, k columns) or k x 1 (k rows, 1 column), where k can be of any size. At least one horizontal or vertical cell separates between two battleships (i.e., there are no adjacent battleships).
Example 1:
Input: board = [["X",".",".","X"],[".",".",".","X"],[".",".",".","X"]]
Output: 2
Example 2:
Input: board = [["."]]
Output: 0
Constraints:
- m == board.length
- n == board[i].length
- 1 <= m, n <= 200
- board[i][j] is either '.' or 'X'.
Follow up: Could you do it in one-pass, using only O(1) extra memory and without modifying the values board?
class Solution:
def countBattleships(self, board: List[List[str]]) -> int:
count=0
def dfs(x,y):
if x<0 or y<0 or x>=len(board) or y>=len(board[0]) or board[x][y]==".":
return
board[x][y]='.'
dfs(x-1,y)
dfs(x+1,y)
dfs(x,y-1)
dfs(x,y+1)
for i in range(len(board)):
for j in range(len(board[0])):
if board[i][j]=='X':
dfs(i,j)
count+=1
return count
'알고리즘 문제 > Leetcode' 카테고리의 다른 글
1910. Remove All Occurrences of a Substring (0) | 2023.05.02 |
---|---|
2340. Minimum Adjacent Swaps to Make a Valid Array (0) | 2023.05.02 |
1973. Count Nodes Equal to Sum of Descendants (0) | 2023.05.02 |
811. Subdomain Visit Count (0) | 2023.05.02 |
1602. Find Nearest Right Node in Binary Tree (0) | 2023.05.02 |