-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BOJ] 2447 별 찍기 - 10 #41
Open
Parkjju
wants to merge
28
commits into
hufslion10th:main
Choose a base branch
from
Parkjju:2447
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…rs generate, 최신데이터 반영
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
BOJ 2447 별 찍기 - 10
로직 개요
JavaScript / 링크 / 백준 / 재귀, 분할정복
주요한 로직은 큰 조각으로부터 쪼개진 작은 조각에 대해
1대1 인덱싱을 표현하는 부분이었습니다.
가장 큰 사각형 기준으로 N/3 ~ 2*N/3 -1까지 돌면서 가운데를 뚫어주고 있는데
이때 재귀적으로 작은 9조각에 대해서도 각각 가운데를 뚫어주기 위해서는
재귀적으로 호출 당하고 있는 작은 조각이 큰 조각 기준으로 어느 곳에 위치했는지
인덱스로 표현해줘야 한다는 것입니다. 이를 row, col이라는 파라미터로 적용해줄 수 있으며
마지막에 이중 for 루프로 9조각에 대한 row, col을 지정해줄 때에도
단순
helper(N/3, i, j)
가 아닌helper(N/3, i+3*row, j+3*col)
로 표현해줘야 합니다.재귀함수 내에 위와 같은 코드가 존재하는데, 이때 i+N*row를 한 이유가
큰 사각형 기준 N/3 크기의 가운데를 뚫어주는 로직을
다른 8조각에도 적용해야 하는데 이때 현재 순회중인 작은 사각형은 재귀 호출 시점을 기준으로 N이기 때문에
[현재 작은 조각 변의 길이 X 작은조각 위치를 표현하는 row][현재 작은 조각 길이 X 작은조각 위치 표현하는 col]로 접근해야 합니다.
재귀호출을 통해 파랗게 작은 조각의 가운데를 뚫었으면 그 다음 작은 조각을 순회하게 되며
위와 같은 형태로 재귀호출을 시작합니다.
크기가 9인 사각형을 9조각으로 쪼개어 가운데를 뚫는다고 가정하면
helper(9,0,0) ~ helper(9,1,0) ... helper(9,2,2)를 순회하게 되고
helper(9,1,0) 즉 분할한 9조각 중 두 번째 조각은
변의 길이가 3인 작은 조각을 기준으로 3번째에 위치하게 됩니다.
결과
색종이 관련 문제랑 유사한 느낌인데 이 문제는 작은 조각으로 쪼개졌을 때 생각해야되는 요소들이 많아서 어려웠습니다..! (인덱스 관련 로직)
바킹독 커리큘럼을 따라가니 골드 문제도 풀이가 되어버리네요 💯