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 | 3856 |
2 | jiangly | 3747 |
3 | orzdevinwang | 3706 |
4 | jqdai0815 | 3682 |
5 | ksun48 | 3591 |
6 | gamegame | 3477 |
7 | Benq | 3468 |
8 | Radewoosh | 3462 |
9 | ecnerwala | 3451 |
10 | heuristica | 3431 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | -is-this-fft- | 162 |
3 | Dominater069 | 160 |
4 | Um_nik | 158 |
5 | atcoder_official | 157 |
6 | Qingyu | 156 |
7 | djm03178 | 151 |
7 | adamant | 151 |
9 | luogu_official | 150 |
10 | awoo | 147 |
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.