This question can be done by dijikstra’s algo too right?? as it is single source shortest path algo…
Dijisktra's algorithm
minimum cost path which is in grid based dp
cant comment because dijisktra is greedy algorithm .
try out on some test cases and see its working or not
yes i have tried it out and it is running fine for the testcases…
try to submit it on any online judges . it will give u clear idea whether it actually work or not
i think the only case where it may not work is if we have negative entries in our table as well then in that case whether we might go for bellman ford algo or the dp part…
yeah for negative edges it will fail.
yes sir and in all other cases it will pass for sure