結果

問題 No.2712 Play more!
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-02 10:48:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,083 bytes
コンパイル時間 3,446 ms
コンパイル使用メモリ 256,932 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-02 10:48:50
合計ジャッジ時間 5,619 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 17 ms
6,944 KB
testcase_08 AC 18 ms
6,940 KB
testcase_09 AC 17 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 16 ms
6,940 KB
testcase_12 AC 15 ms
6,944 KB
testcase_13 AC 14 ms
6,940 KB
testcase_14 AC 21 ms
6,940 KB
testcase_15 AC 48 ms
6,940 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 5 ms
6,940 KB
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 21 ms
6,940 KB
testcase_21 AC 15 ms
6,940 KB
testcase_22 AC 19 ms
6,940 KB
testcase_23 AC 8 ms
6,940 KB
testcase_24 AC 10 ms
6,940 KB
testcase_25 AC 6 ms
6,940 KB
testcase_26 AC 7 ms
6,940 KB
testcase_27 AC 8 ms
6,944 KB
testcase_28 AC 6 ms
6,944 KB
testcase_29 AC 9 ms
6,940 KB
testcase_30 AC 36 ms
6,944 KB
testcase_31 AC 25 ms
6,940 KB
testcase_32 AC 19 ms
6,940 KB
testcase_33 AC 2 ms
6,940 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 from_, int to_, long long cost_, int idx_) : from(from_), to(to_), cost(cost_), idx(idx_) {}
    
    int from, to;
    long long cost;
    int idx;
};

struct Graph {
    private:
    int n, m;
    bool dir;
    vector<vector<Edge>> g;
    vector<Edge> e;
    
    public:
    Graph() {}
    Graph(int n_, bool dir_) : n(n_), m(0), dir(dir_), g(n), e(0) {}
    Graph(int n_) : n(n_), m(0), dir(false), g(n), e(0) {}
    
    int size() {
        return n;
    }
    
    int edgesize() {
        return m;
    }
    
    bool directed() {
        return dir;
    }
    
    void add(int u, int v, long long w) {
        g[u].emplace_back(u, v, w, m);
        e.emplace_back(u, v, w, m);
        if (!dir) {
            g[v].emplace_back(v, u, w, m);
        }
        m++;
    }
    
    vector<Edge> operator[](int v) {
        return g[v];
    }
    
    Edge edge(int i) {
        return e[i];
    }
};

pair<vector<long long>, bool> BellmanFord(Graph g, int s) {
    int n = g.size(), m = g.edgesize();
    vector<long long> dist(n, 1000000000000000000);
    bool negacycle = false;
    dist[s] = 0;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            auto e = g.edge(j);
            int u = e.from, v = e.to;
            long long w = e.cost;
            if (dist[v] > dist[u] + w) {
                dist[v] = dist[u] + w;
                if (i == n - 1) {
                    negacycle = true;
                }
            }
        }
    }
    return {dist, negacycle};
}

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, true);
    for (int i = 0; i < m; i++) {
        int u, v;
        lint w;
        cin >> u >> v >> w;
        u--;
        v--;
        g.add(u, v, w - a[v]);
    }
    auto [d, f] = BellmanFord(g, 0);
    if (f) {
        cout << "inf" << endl;
    } else {
        cout << -(d[n - 1] - a[0]) << endl;
    }
}
0