結果

問題 No.2712 Play more!
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-06 10:41:51
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 2,295 bytes
コンパイル時間 3,196 ms
コンパイル使用メモリ 255,840 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-06 10:41:58
合計ジャッジ時間 6,360 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 45 ms
6,944 KB
testcase_08 AC 45 ms
6,944 KB
testcase_09 AC 45 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 34 ms
6,940 KB
testcase_12 AC 126 ms
6,940 KB
testcase_13 AC 35 ms
6,944 KB
testcase_14 AC 89 ms
6,944 KB
testcase_15 AC 192 ms
6,944 KB
testcase_16 AC 16 ms
6,944 KB
testcase_17 AC 6 ms
6,940 KB
testcase_18 AC 12 ms
6,940 KB
testcase_19 AC 9 ms
6,940 KB
testcase_20 AC 54 ms
6,944 KB
testcase_21 AC 24 ms
6,944 KB
testcase_22 AC 82 ms
6,940 KB
testcase_23 AC 12 ms
6,944 KB
testcase_24 AC 19 ms
6,940 KB
testcase_25 AC 7 ms
6,944 KB
testcase_26 AC 18 ms
6,944 KB
testcase_27 AC 22 ms
6,940 KB
testcase_28 AC 22 ms
6,944 KB
testcase_29 AC 24 ms
6,944 KB
testcase_30 AC 144 ms
6,940 KB
testcase_31 AC 37 ms
6,944 KB
testcase_32 AC 33 ms
6,944 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;

struct Edge {
    Edge() {}
    Edge(int to_, long long cost_) : to(to_), cost(cost_) {}
    Edge(int from_, int to_, long long cost_) : from(from_), to(to_), cost(cost_) {}
    Edge(int from_, int to_, long long cost_, int idx_) : from(from_), to(to_), cost(cost_), idx(idx_) {}
    
    int from, to;
    long long cost;
    int idx;
};

using Graph = vector<vector<Edge>>;
#define add emplace_back

vector<long long> BellmanFord(Graph g, int s) {
    int n = g.size();
    long long INF = 1000000000000000000;
    vector<long long> dist(n, INF);
    vector<bool> nega(n, false);
    dist[s] = 0;
    for (int step = 0; step < n - 1; step++) {
        bool update = false;
        for (int u = 0; u < n; u++) {
            if (dist[u] == INF) {
                continue;
            }
            for (auto e : g[u]) {
                int v = e.to;
                long long w = e.cost;
                if (dist[v] > dist[u] + w) {
                    dist[v] = dist[u] + w;
                    update = true;
                }
            }
        }
        if (!update) {
            break;
        }
    }
    for (int step = 0; step < n; step++) {
        for (int u = 0; u < n; u++) {
            if (dist[u] == INF) {
                continue;
            }
            for (auto e : g[u]) {
                int v = e.to;
                long long w = e.cost;
                if (dist[v] > dist[u] + w) {
                    dist[v] = dist[u] + w;
                    nega[v] = true;
                }
                if (nega[u]) {
                    nega[v] = true;
                }
            }
        }
    }
    for (int v = 0; v < n; v++) {
        if (nega[v]) {
            dist[v] = -INF;
        }
    }
    return dist;
}

using lint = long long;

int main() {
    int n, m;
    cin >> n >> m;
    vector<lint> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    Graph g(n);
    for (int i = 0; i < m; i++) {
        int u, v;
        lint w;
        cin >> u >> v >> w;
        u--;
        v--;
        g[u].add(v, w - a[v]);
    }
    auto d = BellmanFord(g, 0);
    if (d[n - 1] == -1000000000000000000) {
        cout << "inf" << endl;
    } else {
        cout << -(d[n - 1] - a[0]) << endl;
    }
}
0