[강신지-13주차 알고리즘 스터디]#28
Open
ksinji wants to merge 15 commits intoSSAFY13th-algorithm:akstp1717/week13from
Open
Conversation
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 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.
🚀 싸피 15반 알고리즘 스터디 13주차 [강신지]
📌 문제 풀이 개요
✅ 문제 해결 여부
💡 풀이 방법
문제 1: 스티커
문제 난이도
실버 1
문제 유형
DP
접근 방식 및 풀이
현재 위치의 스티커를 선택할 수 있는 경우의 최댓값을 DP로 계산했습니다.
문제 2: 곱셈
문제 난이도
실버 1
문제 유형
수학
접근 방식 및 풀이
거듭제곱을 분할 정복 방식으로 계산하며 모듈러 연산을 적용했습니다.
문제 3: 후위 표기식
문제 난이도
골드 2
문제 유형
자료구조
접근 방식 및 풀이
문자와 괄호, 그 외 기호 등 조건을 나누어 구현했습니다.