Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2024-12-10] gwangseok #369 #371

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

[2024-12-10] gwangseok #369 #371

wants to merge 2 commits into from

Conversation

c0natus
Copy link
Collaborator

@c0natus c0natus commented Dec 11, 2024

PR Summary

<풀이 시간>

1시간

<문제 회고>

고민 끝에 생각이 나지 않아 문제 유형을 힌트로 보았다.
누적합 문제인 것을 파악안 후 쉽게 풀었다.

<풀이1>

  • 0 ~ i 까지의 합을 cum_num list에 저장한다.
  • k index에서 M으로 나눠 떨어지는 후보를 고르려면 누적합이 k index와 동일한 index까지 값을 빼주면 된다.
  • 중복을 고려해 누적합 값이 같은 index 2개를 조합한 수를 구한다.
  • 누적합이 0인 것은 자기 자신을 포함해서 수를 세준다.

<풀이2>

  • 누적합을 따로 list에 저장하지 않고 이전 까지의 누적합해서 같은 값을 가지는 index의 수를 dictionary 형태로 저장한다.
  • k index에서 M으로 나눠 떨어지는 후보를 고르려면 누적합이 k index와 동일한 index까지 값을 빼주면 된다.
  • 중복을 고려해 누적합 값이 같은 index 2개를 조합한 수를 구한다.
  • 누적합이 0인 것은 자기 자신을 포함해서 수를 세준다.

image

@c0natus c0natus self-assigned this Dec 11, 2024
@c0natus c0natus linked an issue Dec 11, 2024 that may be closed by this pull request
Copy link
Collaborator

@HeewonKwak HeewonKwak left a comment

Choose a reason for hiding this comment

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

비슷한 방식으로 접근하여 이해하기 쉬웠습니다. 수고하셨습니다.


# <풀이2>
cum_sum = 0
value_j_dict = defaultdict(int)
Copy link
Collaborator

Choose a reason for hiding this comment

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

int 추가 풀이를 하셨군요.

Copy link
Collaborator

@blaire-pi blaire-pi left a comment

Choose a reason for hiding this comment

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

딕셔너리의 키 값 설정에 따른 두 가지 풀이를 보여주셔서 참고가 되었습니다:)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[2024-12-10]: 나머지 합
3 participants