結果

問題 No.2712 Play more!
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-02 17:38:00
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 2,487 bytes
コンパイル時間 3,371 ms
コンパイル使用メモリ 261,564 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-02 17:38:06
合計ジャッジ時間 5,715 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 43 ms
6,944 KB
testcase_08 AC 42 ms
6,944 KB
testcase_09 AC 41 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 44 ms
6,940 KB
testcase_12 AC 57 ms
6,944 KB
testcase_13 AC 34 ms
6,940 KB
testcase_14 AC 59 ms
6,944 KB
testcase_15 AC 136 ms
6,940 KB
testcase_16 AC 23 ms
6,940 KB
testcase_17 AC 7 ms
6,940 KB
testcase_18 AC 15 ms
6,940 KB
testcase_19 AC 8 ms
6,944 KB
testcase_20 AC 55 ms
6,940 KB
testcase_21 AC 34 ms
6,944 KB
testcase_22 AC 66 ms
6,940 KB
testcase_23 AC 14 ms
6,940 KB
testcase_24 AC 24 ms
6,940 KB
testcase_25 AC 9 ms
6,940 KB
testcase_26 AC 16 ms
6,940 KB
testcase_27 AC 19 ms
6,940 KB
testcase_28 AC 12 ms
6,940 KB
testcase_29 AC 24 ms
6,944 KB
testcase_30 AC 100 ms
6,940 KB
testcase_31 AC 63 ms
6,940 KB
testcase_32 AC 47 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,940 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>, vector<bool>> BellmanFord(Graph g, int s) {
    int n = g.size(), m = g.edgesize();
    long long INF = 1000000000000000000;
    vector<long long> dist(n, INF);
    vector<bool> nega(n, false);
    dist[s] = 0;
    for (int i = 0; i < n - 1; 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[u] != INF && dist[v] > dist[u] + w) {
                dist[v] = dist[u] + w;
            }
        }
    }
    vector<long long> d2 = dist;
    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 (d2[u] != INF && d2[v] > d2[u] + w) {
                d2[v] = d2[u] + w;
                nega[v] = true;
            }
            if (nega[u]) {
                nega[v] = true;
            }
        }
    }
    return {dist, nega};
}

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[n - 1]) {
        cout << "inf" << endl;
    } else {
        cout << -(d[n - 1] - a[0]) << endl;
    }
}
0