Блог пользователя syamphanindra7

Автор syamphanindra7, история, 7 лет назад, По-английски

I have applied BFS and i am getting TLE for it tell how to do that??

  • Проголосовать: нравится
  • -8
  • Проголосовать: не нравится

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

You haven't posted your code so I have to guess. :p
Maybe from a given position (x, y), you are checking ALL the positions you can move to, in a single move (there are O(N) positions for each (x,y)). This gives you a time complexity of O(N*N*N) instead of O(N*N). Instead, from (x, y), you can just check the 8 immediate adjacent positions you can move to and update cost accordingly. Along with (x, y), store a parameter dir storing the direction you are moving in currently. So, if you keep moving along the same direction, you incur a cost of 0, while it costs 1 to change direction. Final ans is the total number of times you change direction.