MdoingIt's blog

By MdoingIt, history, 2 weeks ago, In English

Question — https://codeforces.net/problemset/problem/161/D

Submission — https://codeforces.net/contest/161/submission/278555376

IMO, it should pass the time constraints. Am I missing something?

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
2 weeks ago, # |
  Vote: I like it 0 Vote: I do not like it

try to use int array. not long vector

»
2 weeks ago, # |
  Vote: I like it +3 Vote: I do not like it

Buddy when you are calling dfs it's complexity is n*k*k... It should be n*k fir sol to work . Why are checking for all k values you only have to check for single k... Dp here is unnecessary

  • »
    »
    2 weeks ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Sorry, there are many mistakes in my above answer. Misread the problem statement. I will try to answer in some time. Please ignore above statement.