#include using namespace std; using ll=long long; using ld=long double; template using graph=vector>; template using min_priority_queue=priority_queue,greater>; constexpr int INF32=INT_MAX/2; constexpr ll INF64=1LL<<60; constexpr array DX4={0,1,0,-1}; constexpr array DY4={-1,0,1,0}; constexpr array DX8={0,1,1,1,0,-1,-1,-1}; constexpr array DY8={-1,-1,0,1,1,1,0,-1}; inline int popcnt(ll n){return __builtin_popcountll(n);} template inline bool chmax(T& a,const T& b){return a inline bool chmin(T& a,const T& b){return b=(ll)(n);i--) void _main(); int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); cout<> N >> M; vector A(N); rep(i,0,N) cin >> A[i]; vector> edge; graph rev(N); rep(i,0,M){ int a, b; cin >> a >> b; a--; b--; ll c; cin >> c; edge.emplace_back(a, b, A[b]-c); rev[b].emplace_back(a); } vector used(N); queue que; used[N-1] = true; que.emplace(N-1); while(!que.empty()){ int v = que.front(); que.pop(); for(int nv:rev[v]){ if(used[nv]) continue; used[nv] = true; que.emplace(nv); } } bool inf = true; vector dist(N, -INF64); vector able(N); dist[0] = A[0]; able[0] = true; rep(i,0,N+10){ bool ok = true; for(auto [v, nv, c]:edge) if(able[v] && used[v] && used[nv]){ able[nv] = true; if(chmax(dist[nv], dist[v]+c)) ok = false; } if(ok){ inf = false; break; } } if(inf) cout << "inf" << endl; else cout << dist[N-1] << endl; }