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
- 스프링 핵심 원리 이해
- 20055
- 7장 고급매핑
- 코틀린인액션
- 20055 컨베이어 벨트 위의 로봇
- KotlinInAction
- Kotlin
- 객체 지향 설계와 스프링
- Kotlin in action 6장
- 싱글톤 컨테이너
- Kotlin in action 10장
- 백준 13460 Python
- 자바 ORM 표준 JPA 프로그래밍 7장
- 백준
- Python
- Kotlin In Action
- 스프링 핵심 원리 - 기본편
- 코틸린인액션
- 고급매핑
- 기능개발 python
- 13460 구슬탈출 2
- 스프링 컨테이너와 스프링 빈
- Kotlin in action 3장
- 스프링 핵심 원리
- kotlin in action 정리
- 코틀린
- spring
- 백준 20055 컨베이어 벨트 위의 로봇
- 컨베이어 벨트 위의 로봇 Python
- Kotlin in action 5장
Archives
- Today
- Total
기록하는 습관
[백준] 16932 모양 만들기 본문
문제
(미완) 예제 통과, 백준 런타임 에러
코드
n, m = map(int, input().split())
graph = []
for _ in range(n):
graph.append(list(map(int, input())))
visit = [[0] * 1000 for _ in range(1000)]
count = 0
groupNum = 1
group = [0] * 1000002
dx = [-1, 1, 0, 0] # 상, 하, 좌, 우
dy = [0, 0, -1, 1]
def dfs(x, y):
global count
count += 1
visit[x][y] = groupNum
for i in range(4):
nx, ny = x + dx[i], y + dy[i]
if nx < 0 or ny < 0 or nx >= n or ny >= m: # 가장자리 벽 pass
continue
if graph[nx][ny] == 0: # 0은 이동할 수 없기 때문에 pass
continue
if visit[nx][ny]: # 이미 방문했으면 pass
continue
dfs(nx, ny)
def main():
ans = 0
global count, groupNum, group
for x in range(n):
for y in range(m):
if graph[x][y] and not visit[x][y]:
count = 0
dfs(x, y)
group[groupNum] = count # 그룹 크기 저장
groupNum += 1
for x in range(n):
for y in range(m):
if graph[x][y] == 0:
candi = 1 # 1로 바꿨을 때 만들어지는 모양의 크기
s = set()
for i in range(4):
nx, ny = x + dx[i], y + dy[i]
if nx < 0 or ny < 0 or nx >= n or ny >= m: # 가장자리 벽 pass
continue
if visit[nx][ny] == 0:
continue
if visit[nx][ny] in s:
continue
s.add(visit[nx][ny])
candi += group[visit[nx][ny]]
ans = max(ans, candi)
print(ans)
main()
풀이
- graph의 값이 1인 원소들을 그룹화 시켜 넘버링 한 후 크기를 저장한다.
- graph의 값이 0인 원소들을 1로 바꿔보고 0인 원소를 기준으로 상하좌우를 확인해 1인 모양의 그룹이 있는지 확인한다.
- 1인 모양의 그룹이 있다면, 그룹의 크기를 더한 후 0 ->1 을 변경했을 때 만들 수 있는 모양의 크기를 구한다.
- ans 변수에 최댓값을 담아 갱신한다.
'알고리즘 > [문제풀이] 백준' 카테고리의 다른 글
[백준] 13460 구슬 탈출 2 (0) | 2021.06.13 |
---|---|
[백준] 2178 미로 탐색 (Python, BFS) (0) | 2021.06.06 |
[백준] 1068 트리 (0) | 2021.06.02 |
[백준] 9934 완전 이진 트리 (0) | 2021.05.30 |
[백준] 14425 문자열 집합 (0) | 2021.05.23 |
Comments