Please read the new rule regarding the restriction on the use of AI tools. ×

Sandom_Rhuffle's blog

By Sandom_Rhuffle, history, 4 years ago, In English

I need help on Light Oj problem 1233(Coin Change (III)).

I came up with a solution of O(T*N*M*C[i]). Here is my idea: Let dp[i][j] is true if we can make value j using first i coins. So, dp[i][j]=true if dp[i-1][j-k*x] is true for (0<=k<=c[i-1]) where i>0, x is the current coin and (j-k*s>=0). Initially dp[0][0]=true since we can make 0 using 0 coins. Final result will be sum of dp[n][i] where (1<=i<=m).

. But this solution is slow. How to make it faster? How to solve this problem using O(T*N*M) time complexity?

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it