結果

問題 No.2712 Play more!
ユーザー rurunrurun
提出日時 2024-03-31 15:14:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,077 bytes
コンパイル時間 708 ms
コンパイル使用メモリ 78,604 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-30 20:26:29
合計ジャッジ時間 2,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 22 ms
6,816 KB
testcase_08 AC 21 ms
6,816 KB
testcase_09 AC 21 ms
6,820 KB
testcase_10 WA -
testcase_11 AC 15 ms
6,816 KB
testcase_12 AC 63 ms
6,816 KB
testcase_13 AC 18 ms
6,816 KB
testcase_14 AC 44 ms
6,820 KB
testcase_15 AC 89 ms
6,820 KB
testcase_16 AC 8 ms
6,820 KB
testcase_17 AC 4 ms
6,816 KB
testcase_18 AC 7 ms
6,820 KB
testcase_19 AC 5 ms
6,816 KB
testcase_20 AC 26 ms
6,820 KB
testcase_21 AC 12 ms
6,816 KB
testcase_22 AC 36 ms
6,820 KB
testcase_23 AC 8 ms
6,816 KB
testcase_24 AC 8 ms
6,816 KB
testcase_25 AC 5 ms
6,816 KB
testcase_26 AC 8 ms
6,816 KB
testcase_27 AC 12 ms
6,816 KB
testcase_28 AC 5 ms
6,816 KB
testcase_29 AC 13 ms
6,816 KB
testcase_30 AC 69 ms
6,820 KB
testcase_31 AC 7 ms
6,820 KB
testcase_32 AC 7 ms
6,816 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
using lint = long long;

// 無限大を表す値
const long long INF = 1LL << 60; // 十分大きな値を用いる (ここでは 2^60)

// 辺を表す型,ここでは重みを表す型を long long 型とする
struct Edge {
    int to; // 隣接頂点番号
    long long w; // 重み
    Edge(int to, long long w) : to(to), w(w) {}
};

// 重み付きグラフを表す型
using Graph = vector<vector<Edge>>;

// 緩和を実施する関数
template<class T> bool chmin(T& a, T b) {
    if (a > b) {
        a = b;
        return true;
    }
    else return false;
}

int main() {
    // 頂点数,辺数,始点
    int n, m, s=0;
    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 a, b, w;
        cin >> a >> b >> w;
        a--, b--;
        G[a].push_back(Edge(b, -(A[a]-w)));
    }

    // ベルマン・フォード法
    bool exist_negative_cycle = false; // 負閉路をもつかどうか
    vector<long long> dist(n, INF);
    dist[s] = 0;
    for (int iter = 0; iter < n; ++iter) {
        bool update = false; // 更新が発生したかどうかを表すフラグ
        for (int v = 0; v < n; ++v) {
            // dist[v] = INF のときは頂点 v からの緩和を行わない
            if (dist[v] == INF) continue;

            for (auto e : G[v]) {
                // 緩和処理を行い,更新されたら update を true にする
                if (chmin(dist[e.to], dist[v] + e.w)) {
                    update = true;
                }
            }
        }

        // 更新が行われなかったら,すでに最短路が求められている
        if (!update) break;

        // N 回目の反復で更新が行われたならば,負閉路をもつ
        if (iter == n - 1 && update) exist_negative_cycle = true;
    }

    // 結果出力
    if (exist_negative_cycle) cout << "inf" << endl;
    else cout << -dist[n-1]+A[n-1] << endl;
}
0