Why is the following solution giving TLE?
http://www.codechef.com/viewsolution/4032512
even my solution to MAXPR of complexity O(200 * N) gets TLE … please look
http://www.codechef.com/viewsolution/4077145
i think ,TLE because u are using mod function so many times…use mod function this way…
“if(ans>mod)
ans%=mod;”…
thank you @r4r313 for suggesting this method. the code finally ran http://www.codechef.com/viewsolution/4106416.
but i am really frustrated with this. Such strict time limits must not be there. My algo and execution was correct. The only thing that made the difference was MOD . I personally request codechef to go through all the solutions again and next time make sure that such strict time limits are taken care off.