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 |
Tags
- 문서자동화
- 프로그래머스
- 백준
- 줄어드는 숫자
- 코딩테스트
- 그래프
- 완전 탐색
- DP
- 위클리 6주차
- 너비우선탐색
- 좋은 수열
- 부분 수열의 합
- BFS
- Java
- 10597
- 복서 정렬하기
- dfs
- ElementTree
- BOJ
- 1174
- 입실 퇴실
- 백트랙킹
- 재귀
- 백트렉킹
- 39080
- 몯느 순열
- 위클리 챌린지
- openssl
- 순열장난
- 백트래킹
Archives
개발자-H 입니다.
LeetCode - FloodFile 본문
https://leetcode.com/problems/flood-fill/solution/
Flood Fill - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
- 그래프 탐색 문제이다.
- 경로 탐색 조건에 픽셀 비교 구문을 추가하면 쉽게 해결 할 수 있다.
class Solution {
public int[][] floodFill(int[][] image, int sr, int sc, int newColor) {
dfs(image, sr, sc, newColor, image[sr][sc]);
return image;
}
private void dfs(int[][] image, int sr, int sc, int newColor, int startPixel) {
if (sr >= image.length || sr < 0) return;
if (sc >= image[sr].length || sc < 0) return;
//시작 픽셀 비교
if (image[sr][sc] != startPixel) return;
if (image[sr][sc] == newColor) return;
//픽셀 변경
image[sr][sc] = newColor;
dfs(image, sr + 1, sc, newColor, startPixel);
dfs(image, sr - 1, sc, newColor, startPixel);
dfs(image, sr, sc + 1, newColor, startPixel);
dfs(image, sr, sc - 1, newColor, startPixel);
}
}
'Algorithm > 문제 풀이' 카테고리의 다른 글
프로그래머스 - 포멧몬 (0) | 2021.08.08 |
---|---|
구름 - 길찾기 (다이아몬드) (0) | 2021.08.08 |
BOJ - 섬의 개수 (4963) (0) | 2021.08.07 |
BOJ - 단지번호붙이기 (2667) (0) | 2021.08.07 |
BOJ - 연결 요소의 개수 (11724) (0) | 2021.08.07 |
Comments