This repository was archived by the owner on Mar 18, 2024. It is now read-only.
Conversation
Closed
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
PR Summary
풀이 시작 : 2023-10-11 16:00
제한 사항
Solution
시뮬레이션
최대 5번 이동시키는 경우의 수는 5 ** 4 = 625
한 번의 재귀에서 N^2이어도 20 * 40 = 400
한 번 합쳐진 블록은 또 합쳐질 수 없음 => 별도의 표시 필요
up, down, left, right를 구현해야 함
각 상태공간에서 matrix는 독립적이므로 깊은 복사(deepcopy) 필요
풀이 중단 : 2023-10-11 17:10 (1시간 10분 경과)
풀이 재개 : 2023-10-12 13:10
풀이 완료 : 2023-10-12 14:10 (2시간 10분 소요)