반응형
250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 코딩교육
- DenseNet
- SSAFY 입학식
- 삼성청년sw아카데미
- SWEA
- 프로그래머스 고득점 kit
- dfs
- bfs
- SSAFY
- 웹 표준 사이트 만들기
- 유니온 파인드
- 삼성 청년 SW 아카데미
- pytorch
- 백준7576 bfs
- ssafy 7기 교수님
- SSAFYcial
- 코딩 교육
- 전이학습
- 싸피 7기 입학식
- ssafy 7기
- ssafy 7기 합격
- SSAFY 8기
- 프로그래머스
- DP
- 이코테
- React
- 백준
- Learning
- 알고리즘
- git
Archives
- Today
- Total
개미의 개열시미 프로그래밍
[알고리즘] 백준4963 섬의 개수 - 파이썬 본문
728x90
반응형
https://www.acmicpc.net/problem/4963
[풀이 코드]
from sys import stdin
from collections import deque
input = stdin.readline
dx = [-1, 1, 0, 0, -1, -1, 1, 1]
dy = [0, 0, -1, 1, -1, 1, -1, 1]
def bfs(i, j):
queue = deque()
queue.append((i, j))
while queue:
x, y = queue.popleft()
for d in range(8):
nx = dx[d] + x
ny = dy[d] + y
if 0 <= nx < h and 0 <= ny < w and graph[nx][ny] == 1:
graph[nx][ny] = 0
queue.append((nx, ny))
while True:
w, h = map(int, input().split())
if w == 0 and h == 0:
break
graph = []
for _ in range(h):
graph.append(list(map(int, input().split())))
cnt = 0
for i in range(h):
for j in range(w):
if graph[i][j] == 1:
bfs(i, j)
cnt += 1
print(cnt)
- 섬의 개수를 세는 문제이고 땅은 1, 바다는 0이다. 땅은 가로, 세로뿐만 아니라 대각선도 가능하기 때문에 위의 코드에서 dx, dy 배열 원소를 통해 8쌍으로 표현할 수 있다.
- bfs함수는 전에 풀어왔던 문제처럼 같은 방식이다.
728x90
반응형
'알고리즘 > DFS, BFS, 백트래킹' 카테고리의 다른 글
[알고리즘] 백준2644 촌수계산 - 파이썬 (0) | 2021.09.11 |
---|---|
[알고리즘] 백준11725 트리의 부모찾기 - 파이썬 (0) | 2021.09.11 |
[알고리즘] 백준11724 연결 요소의 개수 - 파이썬 (0) | 2021.09.06 |
[알고리즘] 백준1707 이분그래프 - 파이썬 (0) | 2021.06.10 |
[알고리즘] 백준7562 나이트의 이동 - 파이썬 (0) | 2021.06.08 |
Comments