結果

問題 No.3386 Up Down Hiking (Python)
コンテスト
ユーザー titia
提出日時 2025-11-27 01:06:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 99,136 KB
スコア 0
最終ジャッジ日時 2025-11-27 01:07:04
合計ジャッジ時間 11,310 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

from heapq import heappop,heappush

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=[(0,x)]
    D[x]=0
    while Q:
        dis,x=heappop(Q)
        if D[x]!=dis:
            continue        
        for to in E[x]:
            if H[to]>H[x] and D[to]<D[x]+1:
                D[to]=D[x]+1
                heappush(Q,(D[to],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