关注
# 第一题应该是dijkstra's algorithm的变种?没来得及仔细debug,通过率0%。第二题看起来简单,到交卷了才发现编号只能0-9,通过率0% (此处应该微笑
def minTravelTime(intersections, roads, start, goal):
frontier = []
frontier.append([start, 0])
came_from = {}
cost_so_far = {}
came_from[start] = None
cost_so_far[start] = 0
t = 0
while len(frontier) > 0:
current = min(frontier, key=lambda x: x[1])
frontier.remove(current)
current = current[0]
if current == goal:
print(current)
return cost_so_far(current)
for next in get_neighbors(current, roads):
wait_time = get_wait_time(next[0], intersections, t)
new_cost = cost_so_far[current] + wait_time + next[2]
t = t + wait_time + next[2]
if next[1] not in cost_so_far or new_cost < cost_so_far[next[1]]:
cost_so_far[next[1]] = new_cost
frontier.append([next[1], new_cost])
came_from[next] = current
def get_neighbors(node, roads):
results = []
for road in roads:
if node == roads[0]:
results.append(road)
return results
def get_wait_time(node, intersection, t):
change = intersection[node]
if (t/change)%2 == 0:
return 0
else:
return ((t/change)+1)*change - t
查看原帖
点赞 评论
相关推荐
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
牛客热帖
正在热议
# 25届秋招总结 #
263931次浏览 2185人参与
# 0offer是寒冬太冷还是我太菜 #
887437次浏览 7909人参与
# 北方华创开奖 #
23664次浏览 260人参与
# 地方国企笔面经互助 #
2846次浏览 7人参与
# 学历or实习经历,哪个更重要 #
43438次浏览 328人参与
# 选完offer后,你后悔学本专业吗 #
13262次浏览 94人参与
# 查收我的offer竞争力报告 #
19522次浏览 255人参与
# 应届生被毁约被毁意向了怎么办 #
28203次浏览 243人参与
# 你最想要的公司福利是? #
41869次浏览 146人参与
# 如何一边实习一边秋招 #
987380次浏览 12609人参与
# 一觉醒来,我觉醒了超级打工人系统 #
3305次浏览 36人参与
# 嵌入式转岗的难度怎么样 #
11200次浏览 251人参与
# 你最希望上岸的公司是? #
76542次浏览 469人参与
# 如何写一份好简历 #
605045次浏览 8510人参与
# 面试体验感最好的是哪家? #
83651次浏览 818人参与
# 机械应届生薪资要多少才合适? #
12542次浏览 61人参与
# 牛客十周岁生日快乐 #
48748次浏览 759人参与
# 你认为第一份工作重要吗 #
5447次浏览 49人参与
# 985本硕1个中小厂offer,摆烂or继续努力 #
79945次浏览 589人参与
# 秋招OC许愿 #
228209次浏览 1880人参与
# 来聊聊机械薪资天花板是哪家 #
65737次浏览 445人参与