結果

問題 No.3386 Up Down Hiking (Python)
コンテスト
ユーザー titia
提出日時 2025-11-27 01:03:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 582 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 285,436 KB
スコア 1
最終ジャッジ日時 2025-11-27 01:03:47
合計ジャッジ時間 18,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 41 TLE * 1 -- * 1
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

from collections import deque

N,M=map(int,input().split())
H=[0]+list(map(int,input().split()))

E=[[] for i in range(N+1)]
for i in range(M):
    a,b=map(int,input().split())
    E[a].append(b)
    E[b].append(a)

def bfs(x):
    Q=[x]
    D=[-1]*(N+9)
    Q=deque([x])
    D[x]=0
    while Q:
        x=Q.popleft()
        for to in E[x]:
            if H[to]>H[x] and D[to]<D[x]+1:
                D[to]=D[x]+1
                Q.append(to)
    return D

D1=bfs(1)
D2=bfs(N)
ANS=-2
for i in range(N+1):
    if D1[i]>=0 and D2[i]>=0:
        ANS=max(ANS,D1[i]+D2[i])

print(ANS+1)
0