結果

問題 No.2712 Play more!
ユーザー ttkkggwwttkkggww
提出日時 2024-05-14 13:47:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 1,272 bytes
コンパイル時間 4,589 ms
コンパイル使用メモリ 270,084 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-14 13:47:42
合計ジャッジ時間 8,071 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 53 ms
6,944 KB
testcase_08 AC 51 ms
6,940 KB
testcase_09 AC 53 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 29 ms
6,944 KB
testcase_12 AC 128 ms
6,940 KB
testcase_13 AC 40 ms
6,944 KB
testcase_14 AC 129 ms
6,940 KB
testcase_15 AC 238 ms
6,944 KB
testcase_16 AC 13 ms
6,940 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 14 ms
6,944 KB
testcase_19 AC 6 ms
6,940 KB
testcase_20 AC 62 ms
6,944 KB
testcase_21 AC 22 ms
6,944 KB
testcase_22 AC 94 ms
6,940 KB
testcase_23 AC 9 ms
6,940 KB
testcase_24 AC 14 ms
6,944 KB
testcase_25 AC 5 ms
6,940 KB
testcase_26 AC 12 ms
6,944 KB
testcase_27 AC 96 ms
6,944 KB
testcase_28 AC 87 ms
6,940 KB
testcase_29 AC 25 ms
6,944 KB
testcase_30 AC 192 ms
6,944 KB
testcase_31 AC 83 ms
6,940 KB
testcase_32 AC 68 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
int N,M;
vector<ll> A;
using P = pair<ll,ll>;
vector<vector<P>> G;
vector<vector<P>> nG;


void solve(){
	nG = vector<vector<P>>(N);
	for(int i = 0;i<N;i++){
		for(auto &[to,cost]:G[i]){
			nG[i].push_back({to,-A[to]+cost});
		}
	}
	vector<ll> dist(N,1e18);
	dist[0] = -A[0];
	for(int t= 0;t<N*2;t++){
		for(int i = 0;i<N;i++){
			for(auto [to,cost]:nG[i]){
				if(dist[to]>dist[i]+cost){
					dist[to] = dist[i]+cost;
				}
			}
		}
	}
	vector<int> updated(N);
	ll INF = 1e18;
	for(int t = 0;t<N;t++){
		for(int i = 0;i<N;i++){
			for(auto [to,cost]:nG[i]){
				if(dist[to]>dist[i]+cost){
					dist[to] = dist[i]+cost;
					updated[to] = 1;
				}
			}
		}
	}
	for(int t = 0;t < N;t++){
		for(int i = 0;i<N;i++){
			for(auto [to,cost]:nG[i]){
				if(updated[i]){
					updated[to] = 1;
				}
			}
		}
	}
	if(updated[N-1]){
		cout<< "inf" << endl;
	}
	else{
		cout << -dist[N-1] << endl;
	}
	
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> N >> M;
	A.resize(N);
	for(int i = 0; i < N; ++i) cin >> A[i];
	G.resize(N);
	for(int i = 0; i < M; ++i){
		ll a,b,c;
		cin >> a >> b >> c;
		--a; --b;
		G[a].push_back({b,c});
	}
	solve();
}
0