* 알고리즘 너무 약해서 기초 문제 50개 목표로 푸는 중...
* 3시간 안에 답을 내지 못하면 답지를 보고 30분 내로 정답 판정을 받고, 3일 뒤 다시 풀어보기
Greedy
8 / 50
탐색
8 / 50(NEW!)
기초 동적 프로그래밍
6 / 50
투포인터
2 / 10
이분탐색
0 / 10
문제
https://www.acmicpc.net/problem/2667
→ solved.ac 기준 실버 1
문제 해결 아이디어
예전에 알고리즘 책에서 봤던 DFS 예제 문제인 음료수 얼려 먹기 문제와 비슷
→ 다만 추가적으로 연결된 공간에서 수를 알아야 함.
→ color를 추가해서, 방문할 때 칠해주자.
구현
내 풀이
import sys
input = sys.stdin.readline
def dfs(x, y, color):
if x <= -1 or x >= n or y <= -1 or y >= n:
return False
if graph[x][y] == 1:
graph[x][y] = color
dfs(x - 1, y, color)
dfs(x, y - 1, color)
dfs(x + 1, y, color)
dfs(x, y + 1, color)
return True
return False
n = int(input())
graph = [list(map(int, list(input().rstrip()))) for _ in range(n)]
result = 0
for i in range(n):
for j in range(n):
if dfs(i, j, result + 2) == True:
result += 1
print(result)
answer = [0 for i in range(result)]
for i in range(2, result + 2):
for j in range(n):
answer[i - 2] += graph[j].count(i)
answer.sort()
for a in answer:
print(a)
메모
- 걸린 시간: 22분
'Algorithm' 카테고리의 다른 글
[알고리즘] BOJ 1890번 - 점프(python3) (0) | 2023.06.09 |
---|---|
[알고리즘] BOJ 1789번 - 수들의 합(python3) (0) | 2023.06.07 |
[알고리즘] BOJ 2812번 - 크게 만들기(python3) (0) | 2023.06.07 |
[알고리즘] BOJ 1806번 - 부분합(python3) (0) | 2023.06.02 |
[알고리즘] Programmers Level 1 - 체육복(python3) (0) | 2023.06.02 |