結果
問題 |
No.2712 Play more!
|
ユーザー |
![]() |
提出日時 | 2024-03-31 15:00:54 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,011 bytes |
コンパイル時間 | 1,865 ms |
コンパイル使用メモリ | 202,248 KB |
最終ジャッジ日時 | 2025-02-20 17:33:11 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 RE * 1 |
other | AC * 4 WA * 1 RE * 28 |
ソースコード
#include<bits/stdc++.h> using namespace std; int N,M,A[2525]; vector<pair<int,long>>G[2525]; long H[2525]; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin>>N>>M; for(int i=0;i<N;i++)cin>>A[i]; for(;M--;) { int u,v,w; cin>>u>>v>>w; u--,v--; G[u].push_back(make_pair(v,w)); } for(int i=0;i<N;i++)H[i]=-1L<<60; priority_queue<pair<long,int>>q; q.push(make_pair(A[0],0)); H[0]=A[0]; while(!q.empty()) { auto[d,u]=q.top(); q.pop(); if(H[u]>d)continue; if(u==N-1)continue; for(auto[v,w]:G[u]) { if(H[v]<d-w+A[v]) { if(-(1L<<60)<H[v]) { assert(0); cout<<"inf"<<endl; return 0; } H[v]=d-w+A[v]; q.push(make_pair(H[v],v)); } } } assert(-(1L<<60)<H[N-1]); cout<<H[N-1]<<endl; }