京东笔试第3题
这个代码自己看不出来有什么问题,测试一个都不通过
def min_cost(N, matrix):
directions = [(0, 1), (1, 0), (-1,0)]
visited = set()
start = (0, 0)
end = (1, N-1)
total_cost = matrix[0][0]
i = 0
while start != end:
visited.add(start)
tmp_cost = {}
for direction in directions:
new_x = start[0] + direction[0]
new_y = start[1] + direction[1]
if 0 <= new_x < 2 and 0 <= new_y < N and (new_x, new_y) not in visited:
tmp_cost[(new_x, new_y)] = matrix[new_x][new_y]
if i % 2 == 1:
max_key = max(tmp_cost, key=tmp_cost.get)
max_value = tmp_cost[max_key]
total_cost += max_value
start = max_key
i += 1
else:
min_key = min(tmp_cost, key=tmp_cost.get)
min_value = tmp_cost[min_key]
total_cost += min_value
start = min_key
i += 1
return total_cost
def min_cost(N, matrix):
directions = [(0, 1), (1, 0), (-1,0)]
visited = set()
start = (0, 0)
end = (1, N-1)
total_cost = matrix[0][0]
i = 0
while start != end:
visited.add(start)
tmp_cost = {}
for direction in directions:
new_x = start[0] + direction[0]
new_y = start[1] + direction[1]
if 0 <= new_x < 2 and 0 <= new_y < N and (new_x, new_y) not in visited:
tmp_cost[(new_x, new_y)] = matrix[new_x][new_y]
if i % 2 == 1:
max_key = max(tmp_cost, key=tmp_cost.get)
max_value = tmp_cost[max_key]
total_cost += max_value
start = max_key
i += 1
else:
min_key = min(tmp_cost, key=tmp_cost.get)
min_value = tmp_cost[min_key]
total_cost += min_value
start = min_key
i += 1
return total_cost
全部评论
我样例过了,提交一个不过
老哥,第一手貌似是走到初始位置,这个我也最后看了用例才注意到,然后来不及了😰😰
相关推荐
04-02 10:09
门头沟学院 Java
用微笑面对困难:这里面问题还是很多的,我也不清楚为啥大家会感觉没啥问题。首先就是全栈开发实习9个月的内容都没有java实习生的内容多,1整个技术栈没看出太核心和难点的内容,感觉好像被拉过去打杂了,而且全栈基本上很容易被毙。里面能问的bug是在太多了比如L:继承 BaseMapper 可直接使用内置方法’。请问你的 BaseMapper 是如何扫描实体类注解如果瞬时产生 100 个上传任务,MySQL 的索引设计是否会有瓶颈?你做过分库分表或者索引优化吗?全栈的内容可以针对动态难点去搞,技能特长写在下面吧,你写了这么多技能,项目和实习体现了多少?你可以在项目里多做文章然后把这个放下去,从大致来看实习不算太水,有含金量你也要写上内容针对哨兵里面的节点变化能问出一万个问题,这个很容易就爆了。 点赞 评论 收藏
分享
