Skip to content

Latest commit

Β 

History

History

P9095

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Β 
Β 
Β 
Β 
Β 
Β 

[baekjoon-9095] 1, 2, 3 λ”ν•˜κΈ°

image

점화식

dp[1] = 1
dp[2] = 2
dp[3] = 4
dp[n] = dp[n-1] + dp[n-2] + dp[n-3];

μ •μˆ˜ n을 1, 2, 3의 ν•©μœΌλ‘œ λ‚˜νƒ€λ‚΄λŠ” 방법은 dp[n-1]에 +1을 ν•œ 것, dp[n-2]에 +2λ₯Ό ν•œ 것, dp[n-3]에 +3을 ν•œ 것, 이 λͺ¨λ“  경우의 수λ₯Ό ν•©μΉœ 것과 κ°™λ‹€.