티스토리 뷰
728x90
문제
풀이
dfs로 풀었다.
현재 가리키는 좌표가 i,j 라고 할 때, arr[i][j] 가 1이면 방문 표시로 0으로 바꿔주고, i,j 를 기준으로 상하좌우에 1인 곳이 있는지 확인한다.
소스코드
import sys
input = sys.stdin.readline
def dfs(x, y, cnt):
dx = [-1, 1, 0, 0]
dy = [0, 0, -1, 1]
arr[x][y]=0
for i in range(4):
nowx, nowy = x+dx[i], y+dy[i]
if nowx<0 or nowy<0 or nowx>=n or nowy>=n or not arr[nowx][nowy]:
continue
cnt = dfs(nowx, nowy, cnt+1)
return cnt
n = int(input())
arr = [list(map(int, list(input().strip()))) for _ in range(n)]
cnt = 0
ans = []
for i in range(n):
for j in range(n):
if arr[i][j] == 1:
ans.append(dfs(i, j, 1))
print(len(ans))
for i in sorted(ans):
print(i)
반응형
'Coding - Algo > python' 카테고리의 다른 글
[백준] 1697번:숨바꼭질 (python 파이썬) (0) | 2021.02.13 |
---|---|
[백준] 7576번:토마토 (python 파이썬) (0) | 2021.02.10 |
[백준] 2178번:미로 탐색 (python 파이썬) (0) | 2021.02.05 |
[백준] 11724번:연결 요소의 개수 (python 파이썬) (0) | 2021.02.04 |
[2021카카오공채] 메뉴 리뉴얼 (python 파이썬) (0) | 2021.02.04 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 타일링 자바
- swea 1240
- yoloV3
- 파이썬 풀이
- swea 1240 자바
- 삼성청년SW아카데미
- 백준 풀이
- 우분투
- SSAFY
- 1699 자바
- 프로그래머스 자바
- poker swea
- 백준 dp 문제
- ubuntu
- SWEA
- 프로그래머스
- swea 4070 타일링
- 백준 17144
- swea 타일링 자바
- 백준파이썬
- 프로그래머스 파이썬
- 메뉴리뉴얼 풀이
- 프로그래머스 더 맵게
- 1240 자바
- 파이썬
- union-find
- swea 타일링
- 더 맵게
- 백준
- 3996 자바
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함