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 | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | luogu_official | 150 |
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.