結果

問題 No.2712 Play more!
ユーザー Nafmo2Nafmo2
提出日時 2024-01-23 03:39:17
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 1,098 bytes
コンパイル時間 4,172 ms
コンパイル使用メモリ 266,540 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-09-30 23:44:17
合計ジャッジ時間 6,071 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
const long long INF = 0x1fffffffffffffff;

int main() {
  ll N, M;
  cin >> N >> M;
  vector<ll> A(N);
  for (int i = 0; i < N; i++) {
    cin >> A[i];
  }
  vector<array<long long, 3>> E;
  for (int i = 0; i < M; i++) {
    int a, b, c;
    cin >> a >> b >> c;
    E.push_back({a - 1, b - 1, A[b - 1] - c});
  }
  vector<long long> cost(N, -INF);
  cost[0] = A[0];
  for (int i = 0; i < N - 1; i++) {
    for (auto [from, to, t] : E) {
      if (cost[from] == -INF) continue;
      if (cost[to] < cost[from] + t) {
        cost[to] = cost[from] + t;
      }
    }
  }
  vector<bool> update(N);
  for (int i = 0; i < N; i++) {
    for (auto [from, to, t] : E) {
      if (cost[from] == -INF) continue;
      if (cost[to] < cost[from] + t) {
        update[to] = true;
      }
      if (update[from]) update[to] = true;
    }
  }
  for (int i = 0; i < N; i++) {
    if (update[i]) cost[i] = INF;
  }
  if(cost[N-1] == INF)
    cout<<"inf"<<endl;
  else
    cout<<cost[N-1]<<endl;
}
0