saumyasrivastava08 / Important_Coding_Problems

10 stars 41 forks source link

Atcoder-dp-problem(queens on grid)-explanation #38

Closed navjotdadwal closed 2 years ago

navjotdadwal commented 2 years ago

Queens on grid https://atcoder.jp/contests/abc183/tasks/abc183_e Concepts dp[i][j] = dp[i-1][j] + dp[i-2][j] + dp[i-3][j] + dp[i-4][j]……….. + dp[i-n][j]

navjotdadwal commented 2 years ago

this i want to add can you assign?

navjotdadwal commented 2 years ago

It is a very good E level problem

navjotdadwal commented 2 years ago

i can also add my cpp code to solve this

saumyasrivastava08 commented 2 years ago

This Question is already assigned to someone . if you want to add more Dp problem do add in DP section and add if the question is not present.