300x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 동적프로그래밍
- kick start
- 프로그래밍
- PYTHON
- 코딩 테스트
- 알고리즘
- 백준
- 순열
- 그래프
- BFS
- 코딩
- 동적 프로그래밍
- OS
- 구글 킥스타트
- 프로그래머스
- 딥러닝
- dp
- CSS
- 킥스타트
- DFS
- 리눅스
- google coding competition
- 파이썬
- nlp
- 네트워크
- 코딩테스트
- linux
- 브루트포스
- AI
- 운영체제
Archives
- Today
- Total
오뚝이개발자
[백준2667] 단지번호붙이기 본문
728x90
300x250
문제
https://www.acmicpc.net/problem/2667
생각의 흐름
매우 전형적인 DFS, BFS 문제이므로 코드로 설명을 대신한다.
코드
import sys
def dfs(cnt, x, y, arr):
arr[x][y] = 0
dx = [-1, 1, 0, 0]
dy = [0, 0, -1, 1]
for i in range(4):
n_x = x + dx[i]
n_y = y + dy[i]
if 0<=n_x<N and 0<=n_y<N:
if arr[n_x][n_y] == 1:
cnt = dfs(cnt+1, n_x, n_y, arr)
return cnt
N = int(sys.stdin.readline())
ans = []
arr = [list(map(int, list(sys.stdin.readline().strip()))) for _ in range(N)]
for i in range(N):
for j in range(N):
if arr[i][j] == 1:
ans.append(dfs(1, i, j, arr))
print(len(ans))
for house in sorted(ans):
print(house)
728x90
300x250
'코딩 테스트 > 백준' 카테고리의 다른 글
[백준14226] 이모티콘 (0) | 2020.03.23 |
---|---|
[백준2178] 미로 탐색 (0) | 2020.03.22 |
[백준1261] 알고스팟 (0) | 2020.03.18 |
[백준11724] 연결 요소의 개수 (0) | 2020.03.15 |
[백준4963] 섬의 개수 (0) | 2020.03.14 |
Comments