4
失敗的測試案例DP解決火星
我試圖解決the MARTIAN problem on SPOJ尋找在SPOJ
我的算法如下:
定義可以在矩形中開採礦石的
dp[i][j]=max
量形式爲0,0 to i,j
。使用復發
dp[i][j] = max(dp[i-1][j] + total amount of yeyenum in the i-th row up to the j-th column, dp[i][j-1] + total amount of bloggium in the j-th column up to the cell i-th row)
然而這樣的方法產生了WA(錯誤答案)。有人可以給我提供一個測試用例,這種方法不適用嗎?
我不是在尋找正確的算法只是一個測試用例,這種方法失敗了。我一直無法自己發現錯誤。