what is the problem in this code to get tle?? https://codeforces.net/contest/1389/submission/102948197
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
what is the problem in this code to get tle?? https://codeforces.net/contest/1389/submission/102948197
Name |
---|
Although your code is a little hard for me to read, a quick skim shows that you are checking the value of
vis[idx][left][flag]
but it doesn't seem that you ever set it. This would render your DP useless since you never use the values you memoize.maybe, end of main, "visid++" resolve that problem
Since
vis
is declared globally, its value will always be zero. Howevervisid
starts at 1, and is only changed at the end of main. Honestly I don't see any reason for that increment to be there at all since by that time the answer has already been printed. But it definitely shouldn't changing the behavior of the program that is executed before that statement.Oh, I was mistaken for something. Now I understand. thank you
yes thanks alot i just put vis[idx][left][flag]=visid; and i got it ac