-
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
docs : BOJ 1780 종이의 개수 #35
Open
Parkjju
wants to merge
27
commits into
hufslion10th:main
Choose a base branch
from
Parkjju:1780
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 1780 종이의 개수
로직 개요
Node.js / 링크 / BOJ / 재귀 - 분할정복
재귀의 형태가 사각형 변이 3의 k제곱 으로 나타나기 때문에
한 변을 쭉 둘러보고 원소중에 다른 값이 하나라도 존재하면 바로 작은 조각으로 쪼개어
풀이하면 되겠다 생각은 했는데 코드로 표현하기가 어려웠네요
재귀함수의 인자로 시작지점 행-열 좌표를 받고 순회 대상 사각형 한 변의 길이를 세 번째 파라미터로 받습니다.
시작지점 row ~ row+size
시작지점 col ~ col+size까지 순회하는 도중 -1, 0, 1 하나의 값으로 나타나지 않게 되면
그 즉시 false로 불리언 값을 초기화하고 분할정복을 시작합니다.
모두 같은 값으로 나타났다면 -1,0,1의 개수를 저장하는 배열 인덱스 값에 +1을 해줍니다
분할정복은 어차피 3의 k제곱 형태이므로 작은 조각 * 3이면 현재의 큰 조각을 완성하게 됩니다.
따라서 3번씩 총 9번 루프를 도는 이중 for 루프 형태로 반복문을 돕니다.
재귀함수에
function(row + 3*작은변 사이즈, col + 3*작은변 사이즈, 작은변 사이즈)
을 전달하며 분할정복을 마무리 합니다.결과
뭔가 알것 같았는데 그걸 코드로 표현하기가 너무 어려웠던 문제였습니다.
하루종일 씨름하고 결국 답지 보고 풀이했네요.. 🥹
레퍼런스 (선택)