結果
問題 | No.2712 Play more! |
ユーザー | t98slider |
提出日時 | 2024-03-31 14:51:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 247 ms / 2,000 ms |
コード長 | 1,755 bytes |
コンパイル時間 | 2,689 ms |
コンパイル使用メモリ | 212,580 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-30 23:48:23 |
合計ジャッジ時間 | 4,606 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 66 ms
5,248 KB |
testcase_08 | AC | 66 ms
5,248 KB |
testcase_09 | AC | 67 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 40 ms
5,248 KB |
testcase_12 | AC | 231 ms
5,248 KB |
testcase_13 | AC | 26 ms
5,248 KB |
testcase_14 | AC | 138 ms
5,248 KB |
testcase_15 | AC | 247 ms
5,248 KB |
testcase_16 | AC | 12 ms
5,248 KB |
testcase_17 | AC | 4 ms
5,248 KB |
testcase_18 | AC | 25 ms
5,248 KB |
testcase_19 | AC | 7 ms
5,248 KB |
testcase_20 | AC | 47 ms
5,248 KB |
testcase_21 | AC | 14 ms
5,248 KB |
testcase_22 | AC | 211 ms
5,248 KB |
testcase_23 | AC | 6 ms
5,248 KB |
testcase_24 | AC | 21 ms
5,248 KB |
testcase_25 | AC | 4 ms
5,248 KB |
testcase_26 | AC | 33 ms
5,248 KB |
testcase_27 | AC | 34 ms
5,248 KB |
testcase_28 | AC | 39 ms
5,248 KB |
testcase_29 | AC | 22 ms
5,248 KB |
testcase_30 | AC | 233 ms
5,248 KB |
testcase_31 | AC | 79 ms
5,248 KB |
testcase_32 | AC | 71 ms
5,248 KB |
testcase_33 | AC | 3 ms
5,248 KB |
testcase_34 | AC | 2 ms
5,248 KB |
testcase_35 | AC | 1 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const ll INF2 = 1ll << 60; vector<ll> Bellman_Ford(vector<vector<pair<ll,ll>>> &graph,int start){ int n=graph.size(),x; vector<ll> dist(n,INF2); queue<int> next; dist[start]=0; int cnt=n-1; while(cnt--){ for(int i=0;i<n;i++){ if(dist[i]==INF2)continue; for(int j=0;j<graph[i].size();j++){ if(dist[i]+graph[i][j].second<dist[graph[i][j].first]){ dist[graph[i][j].first]=dist[i]+graph[i][j].second; } } } } for(int i=0;i<n;i++){ if(dist[i]==INF2)continue; for(int j=0;j<graph[i].size();j++){ if(dist[graph[i][j].first]!=-INF2&& dist[i]+graph[i][j].second<dist[graph[i][j].first]){ dist[graph[i][j].first]=-INF2; next.push(graph[i][j].first); } } } while(!next.empty()){ x=next.front(); next.pop(); for(int j=0;j<graph[x].size();j++){ if(dist[graph[x][j].first]!=-INF2){ dist[graph[x][j].first]=-INF2; next.push(graph[x][j].first); } } } return dist; } int main(){ ios::sync_with_stdio(false); cin.tie(0); int n, m, v, u, c; cin >> n >> m; vector<vector<pair<ll,ll>>> g(2 * n); for(int i = 0; i < n; i++){ cin >> c; g[i].emplace_back(i + n, -c); } for(int i = 0; i < m; i++){ cin >> u >> v >> c; g[--u + n].emplace_back(--v, c); } auto dp = Bellman_Ford(g, 0); ll ans = dp.back(); if(ans == -INF2){ cout << "inf\n"; }else{ cout << -ans << '\n'; } }