260123 : [BOJ 1451] 직사각형으로 나누기 #2329
Merged
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.
🚀 이슈 번호
Resolve: {#2328}
🧩 문제 해결
스스로 해결: ✅
🔎 접근 과정
누적합을 이용하여 직사각형의 합을 빠르게 구하였으며,
만들 수 있는 모든 직사각형의 케이스를 나누어서 풀었습니다.
⏱️ 시간 복잡도
O(N * M)누적합을 이용한다면 중복되는 직사각형의 합을 계속 구할 필요가 없기 떄문에
직사각형 N * M 안에서 누적합을 사용하게 됩니다.
💻 구현 코드