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

Автор bristy1588, 12 лет назад, По-английски

Here is the problem: http://acm.timus.ru/problem.aspx?space=1&num=1930

Basically we have to find the shortest path form one node to another where the weights of the edges are 0 or 1.

Here is my code: http://paste.ubuntu.com/1527659/

Can anyone please help?

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

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

This is probably not the answer but, my first bfs solution was very similar to yours and it also got WA in test case 6. Then the DP solution passed. I am not sure, but may be we are missing something silly in our bfs implementation. If I can figure out the bug I'll share it with you.

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

http://paste.ubuntu.com/1531247/ ... changed one line of your code, this will get AC :) why ? just debug your code with the following case, & you'll understand :

3 2 2 1 2 3 1 3

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

i am getting wa on tc 11.

link to my code

can anyone help?