Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Algospot
- DP
- web
- C언어
- Algorithm
- BOJ
- C
- BASIC
- sorting
- 종만북
- greedy
- 따라하면서 배우는 C언어
- Python
- String
- server
- 생활코딩
- 인프런
- graph
- Math
- Cleancode
- BFS
- 정수론
- programmers
- 따배씨
- php
- 백준
- JavaScript
- 따라하며 배우는 C언어
- udemy
- dfs
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 2667 / 단지번호붙이기 / Python 파이썬 본문
[BOJ] 2667 / 단지번호붙이기 / Python 파이썬
https://www.acmicpc.net/problem/2667
풀이
이중배열로 된 데이터를 탐색하는 문제이다.
붙어있는 block 의 개수를 구하기 위하여, deque 로 BFS 를 구현하여 탐색하였다.
import sys
from collections import deque
input = sys.stdin.readline
def BFS(r, c):
dq = deque()
dq.append((r, c))
maps[r][c] = 0
cnt = 1
while dq:
y, x = dq.popleft()
for i in range(4):
X = x + dx[i]
Y = y + dy[i]
if 0 <= Y < N and 0 <= X < N and maps[Y][X]:
maps[Y][X] = 0
cnt += 1
dq.append((Y, X))
return cnt
N = int(input())
maps = []
for _ in range(N):
maps.append(list(map(int, list(input().rstrip()))))
dx = [0, 0, 1, -1]
dy = [-1, 1, 0, 0]
blocks = []
for r in range(N):
for c in range(N):
if maps[r][c]:
blocks.append(BFS(r, c))
print(len(blocks))
for b in sorted(blocks):
print(b)
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 7576 / 토마토 / Python 파이썬 (0) | 2021.06.10 |
---|---|
[BOJ] 4963 / 섬의 개수 / Python 파이썬 (0) | 2021.06.10 |
[BOJ] 9466 / 텀 프로젝트 / Python 파이썬 (0) | 2021.06.09 |
[BOJ] 2331 / 반복수열 / Python 파이썬 (0) | 2021.06.07 |
[BOJ] 10451 / 순열 사이클 / Python 파이썬 (0) | 2021.06.07 |
Comments