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

Автор electro177, история, 2 года назад, По-английски

hello all

given n cities from 1 to n and m flights.each flight is represented as(L,R,c) which means flight starts from city L and end at R and the cost is c(one can travel between any two cities from lower index to larger ,both inclusive)with cost c mathematically (l,r,c)--people can travel from u to v(l<=u<v<=r) at the cost c//not like our trains:)

find the minimum cost from city 1 to n,if not reachable o/p -1;

constraints: n<=1e5 //number of cities m<=1e5 /// number of flights 1<=l<r<=n //for each flight starting and ending points c<=1e9; // cost for each flight

i tried to create an adjacency list but to update the list i did not get idea how to do that effectively? bec it took (r-l)^2 for updating for each flight ,but that would tle

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

»
2 года назад, # |
Rev. 4   Проголосовать: нравится +1 Проголосовать: не нравится

Removed

  • »
    »
    2 года назад, # ^ |
      Проголосовать: нравится +5 Проголосовать: не нравится

    This problem was asked in a hiring challenge, organized today (during the time this blog was made). I would suggest delaying discussion for a few hours.