#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N,M; cin>>N>>M; vectorH(N); for(int &i:H)cin>>i; vector>G(N); for(int i=0;i>x>>y; --x,--y; G[x].push_back(y), G[y].push_back(x); } vectorcost(N*2,(long long)-1e18); cost[0]=0,cost[N]=0; for(int i=0;iH[i]){ cost[j+N]=max(cost[j+N],cost[i]+H[j]-H[i]); }else{ cost[j]=max(cost[j],cost[i]); cost[j]=max(cost[j],cost[i+N]); } } } cout<<(max(cost[N-1],cost[N*2-1])<0?-1ll:max(cost[N-1],cost[N*2-1]))<<'\n'; fill(cost.begin(),cost.end(),(long long)-1e18); cost[N-1]=cost[N*2-1]=0; for(int i=N-1;i>=0;i--){ for(int j:G[i]){ if(j>i)continue; if(H[j]>H[i]){ cost[j+N]=max(cost[j+N],cost[i]+H[j]-H[i]); }else{ cost[j]=max(cost[j],cost[i]); cost[j]=max(cost[j],cost[i+N]); } } } cout<<(max(cost[0],cost[N])<0?-1ll:max(cost[0],cost[N]))<<'\n'; }