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 boj12919 - A와 B 2
🗨 해결방법 :
문자열을 하나하나 뒤집게 되면 시간이 오래 걸릴 것이라고 생각하여,
최대한 숫자만으로 해결하려고 노력했습니다.
결과적으로는 오히려 더 느린 코드가 된 것 같아요 ..
startIndex == 1 이면, 거꾸로 본다는 의미이고
endIndex == 0 이면 원래 방향으로 본다는 의미입니다
📝메모 :
✔코드 :
🎈boj 10159- 저울
🗨 해결방법 :
DFS로 자식들과 부모를 탐색해 주었습니다.
📝메모 :
✔코드 :
🎈boj 2467 - 용액
🗨 해결방법 :
투포인터
📝메모 :
✔코드 :
🎈boj 16120 - PPAP
🗨 해결방법 :
PPAP 문자열의 규칙을 찾아 해결하였습니다.
📝메모 :
✔코드 :
🎈boj 14466 - 소가 길을 건넌 이유6
🗨 해결방법 :
bfs로 탐색을 해주고,
만난 소의 수를 조합으로 구하여
전체 경우에서 빼 주었습니다.
📝메모 :
road 를 처리하는 과정에서 4차원 배열을 사용하다보니 생각보다 많은 메모리를 사용하게 되었습니다.
✔코드 :