Skip to content

Conversation

@dylan-jung
Copy link
Contributor

@dylan-jung dylan-jung commented Nov 24, 2025

답안 제출 문제

작성자 체크 리스트

  • Projects의 오른쪽 버튼(▼)을 눌러 확장한 뒤, Week를 현재 주차로 설정해주세요.
  • 문제를 모두 푸시면 프로젝트에서 StatusIn Review로 설정해주세요.
  • 코드 검토자 1분 이상으로부터 승인을 받으셨다면 PR을 병합해주세요.

검토자 체크 리스트

Important

본인 답안 제출 뿐만 아니라 다른 분 PR 하나 이상을 반드시 검토를 해주셔야 합니다!

  • 바로 이전에 올라온 PR에 본인을 코드 리뷰어로 추가해주세요.
  • 본인이 검토해야하는 PR의 답안 코드에 피드백을 주세요.
  • 토요일 전까지 PR을 병합할 수 있도록 승인해주세요.

Copy link
Contributor

@seungriyou seungriyou left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이번 한 주도 수고 많으셨습니다~! 🦾

else if (sum == t) ans.push_back(s);

for(int i = idx; i < candids.size(); i++) {
auto next = vector<int>(s);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

매 호출마다 벡터를 복사하면 O(len(s)) 만큼의 비용이 각 호출마다 발생합니다.

주어진 s 벡터에 대해 dfs() 호출 앞뒤로 push_back()pop_back()을 하여 동적으로 벡터를 조작한다면 더 효율적이지 않을까요??


void dfs(int idx, int sum, vector<int> s) {
if(sum > t) return;
else if (sum == t) ans.push_back(s);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sum == t일 때도 곧바로 return 하는 것이 더 좋을 것 같습니다!

};

vector<vector<int>> combinationSum(vector<int>& candidates, int target) {
candids = candidates;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

추가로 주어진 candidates 벡터를 정렬하면 pruning을 할 수 있어 풀이를 더 최적화 할 수 있습니다!

int dp[100000];
dp[0] = max(nums[0], -(1<<30));
for(int i = 1; i < nums.size(); i++) {
dp[i] = max(dp[i-1] + nums[i], nums[i]);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dp[i]를 구하기 위해 dp[i - 1]만 확인하므로 DP 리스트가 아닌 하나의 변수로 트래킹한다면 공간 복잡도를 O(1)로 최적화 할 수 있을 것 같습니다!

@TonyKim9401 TonyKim9401 merged commit fb5e363 into DaleStudy:main Dec 1, 2025
3 checks passed
@github-project-automation github-project-automation bot moved this from In Review to Completed in 리트코드 스터디 6기 Dec 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

Status: Completed

Development

Successfully merging this pull request may close these issues.

3 participants