Can someone kindly take the pain of checking my submission on which i am getting RE verdict and help me to sort the error?
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3831 |
3 | Radewoosh | 3646 |
4 | jqdai0815 | 3620 |
4 | Benq | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | gamegame | 3386 |
10 | ksun48 | 3373 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
Can someone kindly take the pain of checking my submission on which i am getting RE verdict and help me to sort the error?
Name |
---|
Use a debugger maybe?
I did, infact the code is giving correct output when i am running it on my device on the sample tests, but the online judge is giving RA verdict.
Why
if(i>1){
andif(j>1){
?I think that ifs have to be remove, then it should work.
Can you please elaborate?
Consider the first if, if(i>1)...
Inside of that if you have
if(mtr[i][j]) dp[i][j][1]=max(dp[i][j][1],mx+mtr[i][j]);
Why you should ignore the mtr[][] values of first row?
Because those cases are being included in "if(j>1)".
Ok, that one
if(mtr[i][j]) dp[i][j][1]=max(dp[i][j][1],mx+mtr[i][j]);
Again, why the if? What if mx!=0 and mtr[i][j]==0?
Ok got it, thanks.