티스토리 뷰
728x90
문제
소스코드
from collections import deque
import sys
sys.setrecursionlimit(100000)
input = sys.stdin.readline
def dfs(x, y):
dx = [-1, 0, 1, -1, 0, 1, -1, 0, 1]
dy = [-1, -1, -1, 0, 0, 0, 1, 1, 1]
arr[y][x]=0
for i in range(9):
nowx, nowy = dx[i]+x, dy[i]+y
if 0<=nowx<w and 0<=nowy<h and arr[nowy][nowx]:
dfs(nowx, nowy)
while True:
w, h = map(int, input().split())
if w==0 and h==0:
break
arr = [list(map(int,input().split())) for _ in range(h)]
cnt = 0
for i in range(h):
for j in range(w):
if arr[i][j]==1:
cnt += 1
dfs(j, i)
print(cnt)
반응형
'Coding - Algo > python' 카테고리의 다른 글
[백준] 2557번:Hello World (python 파이썬) (0) | 2021.02.18 |
---|---|
[백준] 10026번:적록색약 (python 파이썬) (0) | 2021.02.17 |
[백준] 1012번:유기농 배추 (python 파이썬) (0) | 2021.02.15 |
[백준] 1697번:숨바꼭질 (python 파이썬) (0) | 2021.02.13 |
[백준] 7576번:토마토 (python 파이썬) (0) | 2021.02.10 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 프로그래머스 더 맵게
- union-find
- yoloV3
- 메뉴리뉴얼 풀이
- swea 4070 타일링
- 파이썬
- 삼성청년SW아카데미
- 프로그래머스 자바
- poker swea
- swea 타일링
- 더 맵게
- SSAFY
- SWEA
- 파이썬 풀이
- 백준 dp 문제
- ubuntu
- 백준
- 1699 자바
- 프로그래머스 파이썬
- 백준파이썬
- 백준 풀이
- 백준 17144
- 우분투
- swea 1240 자바
- 3996 자바
- swea 타일링 자바
- 타일링 자바
- swea 1240
- 프로그래머스
- 1240 자바
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함