結果
問題 |
No.2712 Play more!
|
ユーザー |
![]() |
提出日時 | 2024-03-31 14:20:18 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 896 bytes |
コンパイル時間 | 2,064 ms |
コンパイル使用メモリ | 201,928 KB |
最終ジャッジ日時 | 2025-02-20 17:09:42 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 WA * 3 |
ソースコード
#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(0,0)); H[0]=0; while(!q.empty()) { auto[d,u]=q.top(); q.pop(); for(auto[v,w]:G[u]) { if(H[v]<d+A[u]-w) { if(-(1L<<60)<H[v]) { cout<<"inf"<<endl; return 0;; } H[v]=d+A[u]-w; q.push(make_pair(H[v],v)); } } } cout<<H[N-1]+A[N-1]<<endl; }