2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
travel_MT.py 665 Bytes
一键复制 编辑 原始数据 按行查看 历史
Royce Li 提交于 2021-05-10 16:39 . 2020/5/10 First Commit
raw=input().split(" ")
[n,e]=[int(i) for i in raw]
raw=input().split(" ")
heights=[int(i) for i in raw]
links=[[] for _ in range(n+1)]
for _ in range(e):
raw=input().split(" ")
[i,j]=[int(n) for n in raw]
if heights[i-1]>heights[j-1]:
links[i].append(j)
if heights[i-1]<heights[j-1]:
links[j].append(i)
result=0
temp={}
def dfs(node):
maxr=1
for i in links[node]:
if i in temp:
maxr=max(maxr,temp[i]+1)
else:
t=dfs(i)
maxr=max(t,maxr)
temp[node]=maxr
return maxr
for i in range(1,n+1):
result=max(result,dfs(i))
print(result)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/royce-li/leetcode_royce.git
git@gitee.com:royce-li/leetcode_royce.git
royce-li
leetcode_royce
Leetcode_royce
master

搜索帮助