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

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

i want an help beecause it is a difficult questions (sorry for mine poor english)

https://www.codechef.com/problems/DIGJUMP

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

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

You can make graph with edges between i and i + 1. Also when you visit some verix u with digit x, and you haven't visited any other vertix with the same digit, you can push all of them into the queue, setting the distance to them dst[u] + 1.

Code