結果

問題 No.2712 Play more!
ユーザー Today03Today03
提出日時 2024-03-31 21:18:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,068 bytes
コンパイル時間 2,451 ms
コンパイル使用メモリ 209,068 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-03-31 21:18:39
合計ジャッジ時間 3,801 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,676 KB
testcase_06 AC 2 ms
6,676 KB
testcase_07 AC 24 ms
6,676 KB
testcase_08 AC 24 ms
6,676 KB
testcase_09 AC 24 ms
6,676 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 33 ms
6,676 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 40 ms
6,676 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 5 ms
6,676 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 7 ms
6,676 KB
testcase_32 AC 7 ms
6,676 KB
testcase_33 AC 3 ms
6,676 KB
testcase_34 AC 2 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#ifdef LOCAL
#include "./debug.cpp"
#else
#define debug(...)
#define print_line
#endif
using namespace std;
using ll = long long;

int main() {
    int N, M;
    cin >> N >> M;
    vector<ll> A(N);
    for (int i = 0; i < N; i++) {
        cin >> A[i];
    }
    vector<vector<pair<int, ll>>> G(N);
    for (int i = 0; i < M; i++) {
        int a, b;
        ll c;
        cin >> a >> b >> c;
        a--;
        b--;
        G[a].push_back({b, c});
    }

    // bellman-ford
    vector<ll> dst(N, LLONG_MIN);
    dst[0] = 0;
    for (int i = 0; i < N; i++) {
        bool fin = true;
        for (int j = 0; j < N; j++) {
            for (auto [nxt, cost] : G[j]) {
                if (dst[nxt] < dst[j] + A[j] - cost) {
                    dst[nxt] = dst[j] + A[j] - cost;
                    fin = false;
                }
            }
        }
        if (fin) {
            break;
        }
        if (i == N - 1) {
            cout << "inf" << endl;
            return 0;
        }
    }
    cout << dst[N - 1] + A[N - 1] << endl;
}
0