티스토리 뷰
728x90
문제
소스코드
import sys
input = sys.stdin.readline
sys.setrecursionlimit(100000)
def dfs(x, y):
global flg
dx = [-1, 1, 0, 0]
dy = [0, 0, -1, 1]
visited[y][x]=1
flg += 1
for i in range(4):
nowx, nowy = x+dx[i], y+dy[i]
if 0<=nowx<n and 0<=nowy<m and visited[nowy][nowx]==0 and arr[nowy][nowx]==0:
dfs(nowx, nowy)
return area
m, n, k = map(int, input().split())
arr = [[0]*n for _ in range(m)]
for _ in range(k):
a, b, c, d = map(int, input().split())
for i in range(b, d):
for j in range(a, c):
if arr[i][j] == 0:
arr[i][j] = 1
visited = [[0]*n for _ in range(m)]
cnt = 0
area = []
flg = 0
for i in range(m):
for j in range(n):
if arr[i][j] == 0 and visited[i][j]==0:
cnt += 1
dfs(j, i)
area.append(flg)
flg = 0
print(cnt)
print(' '.join(map(str, sorted(area))))
반응형
'Coding - Algo > python' 카테고리의 다른 글
[백준] 1463번:1로 만들기 (python 파이썬) (0) | 2021.02.28 |
---|---|
[백준] 1707번:이분 그래프 (python 파이썬) (0) | 2021.02.24 |
[백준] 2468번:안전 영역 (python 파이썬) (0) | 2021.02.19 |
[백준] 2557번:Hello World (python 파이썬) (0) | 2021.02.18 |
[백준] 10026번:적록색약 (python 파이썬) (0) | 2021.02.17 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 프로그래머스 자바
- yoloV3
- union-find
- 프로그래머스
- 3996 자바
- poker swea
- 우분투
- swea 4070 타일링
- swea 1240 자바
- swea 1240
- ubuntu
- 백준파이썬
- 파이썬 풀이
- 타일링 자바
- 프로그래머스 파이썬
- 백준
- swea 타일링 자바
- 백준 17144
- 파이썬
- 프로그래머스 더 맵게
- 백준 dp 문제
- 더 맵게
- 메뉴리뉴얼 풀이
- SSAFY
- 백준 풀이
- 1240 자바
- swea 타일링
- 1699 자바
- 삼성청년SW아카데미
- SWEA
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함