[이준희-11주차 알고리즘 스터디] #14
Open
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.
🚀 싸피 15반 알고리즘 스터디 10주차 [이준희]
📌 문제 풀이 개요
✅ 문제 해결 여부
💡 풀이 방법
문제 1: 알고스팟
문제 난이도
골드 4
문제 유형
그래프
접근 방식 및 풀이
다익스트라를 이용하는 문제였습니다. 벽은 가중치가 있고 벽이 아닌경우 0가중치로 계산했습니다.
문제 2: 거울설치
문제 난이도
골드 3
문제 유형
그래프
접근 방식 및 풀이
못풀었습니다. 추후 학습하여 풀이하겠습니다.
문제 3: 2×n 타일링 2
문제 난이도
실버 3
문제 유형
DP
접근 방식 및 풀이
타일링 DP 문제였습니다. 규칙을 찾아서 풀이했습니다.
문제 4: LCS
문제 난이도
골드 5
문제 유형
DP
접근 방식 및 풀이
마찬가지로 DP 중 대표격인 LCS의 문제였습니다. 최장공통부분수열의 점화식을 학습하고 이를 구현했습니다.
문제 5 : 평범한 배낭
문제 난이도
골드 5
문제 유형
DP
접근 방식 및 풀이
냅색문제였습니다. 가방 DP 점화식을 학습한 후 구현하였습니다.