Rating changes for last rounds are temporarily rolled back. They will be returned soon. ×

Getting WA on CSES Two sets - II question
Difference between en1 and en2, changed 35 character(s)
I am trying the CSES problem set. I am getting WA on a few tests in Two Sets — II question. Here is the link for the code and the results https://cses.fi/problemset/result/911739/ ↵

My approach is to create a dp[i][j] which stores the number of ways to get sum i using first j indices. My target is to get sum n*(n-1)/4 . Formula I use is- dp[i][j]=dp[i][j-1]+dp[i-j][j-1];↵

I initialized dp[0][i] to 1 for all i<=n bcoz the only possible way is to select no indice at all.↵
And also dp[i][0] to 0 for all 1<=i<=target bcoz its not possible to create a sum using no digits at all.↵
I then print (dp[target][n])/2;↵

Please help. I am getting WA on few tests.

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en4 English jayantjha1109 2020-08-28 11:03:59 1244
en3 English jayantjha1109 2020-08-28 10:59:16 1333
en2 English jayantjha1109 2020-08-28 10:52:28 35 Tiny change: ' at all.\n\nPlease' -> ' at all.\nI then print (dp[target][n])/2;\n\nPlease'
en1 English jayantjha1109 2020-08-28 10:51:28 677 Initial revision (published)