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

강두오 46일차 문제 풀이 #159

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

kduoh99
Copy link
Contributor

@kduoh99 kduoh99 commented Nov 8, 2024

문제

14494 다이나믹이 뭐예요?

풀이

풀이에 대한 직관적인 설명

  • →, ↓, ↘ 방향만 사용해서 한 칸씩 이동하는데, 좌표 (1, 1)에서 출발하여 (n, m)에 도착하는 경우의 수를 구하는 문제이다.
  • 단, 경우의 수가 커질 수 있으므로 1,000,000,007로 나눈 나머지를 출력한다.

풀이 도출 과정

  • 점화식을 줘서.. dp 튜토리얼 문제이다
  • 오버플로우만 주의하면 됨

복잡도

  • 시간복잡도: O(n * m)

채점 결과

스크린샷 2024-11-08 오후 11 46 32

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

Successfully merging this pull request may close these issues.

1 participant