#if !__INCLUDE_LEVEL__ #include __FILE__ ll dijkstra(ll start, ll end, vector>>& graph) { vector dist(graph.size(), 1e18); using node = pair>; priority_queue, greater> pque; pque.push(node(0, pair(start, false))); dist[start] = 0; while (!pque.empty()) { auto cn = pque.top(); ll cost = cn.first; ll index = cn.second.first; bool up = cn.second.second; pque.pop(); if (dist[index] < cost) { continue; } for (auto nn: graph[index]) { if (up && nn.cost < 0) { continue; } if (dist[nn.to] <= cost + nn.cost) { continue; } dist[nn.to] = cost + nn.cost; pque.push( node(cn.first + nn.cost, pair(nn.to, nn.cost < 0))); } } cerr << dist[end] << "\n"; return dist[end] <= 0 ? -dist[end] : -1; } signed main() { ios::sync_with_stdio(false); cin.tie(nullptr); ll N, M; cin >> N >> M; vector H(N); REP(i, N) cin >> H[i]; vector>> cher(N), zelc(N); REP(i, M) { ll x, y; cin >> x >> y; x--; y--; if (H[x] > H[y]) { cher[x].push_back(edge(y, 0, false)); zelc[y].push_back(edge(x, -(H[x] - H[y]), true)); } else { cher[x].push_back(edge(y, -(H[y] - H[x]), true)); zelc[y].push_back(edge(x, 0, false)); } } cout << dijkstra(0, N - 1, cher) << "\n"; cout << dijkstra(N - 1, 0, zelc) << "\n"; return 0; } //====================temp==================== #else #include using namespace std; #define REP(i, n) for (int i = 0; i < (int)(n); i++) #define RREP(i, n) for (int i = ((int)(n)-1); i >= 0; i--) #define REPITR(itr, ARRAY) \ for (auto itr = (ARRAY).begin(); itr != (ARRAY).end(); ++itr) #define RREPITR(itr, ARRAY) \ for (auto itr = (ARRAY).rbegin(); itr != (ARRAY).rend(); ++itr) #define ALL(n) (n).begin(), (n).end() using ll = long long; using ull = unsigned long long; //#define int long long template struct edge { int to; T cost; bool up; edge() {} edge(int to, T cost, bool up): to(to), cost(cost), up(up) {} }; #endif