結果

問題 No.2712 Play more!
ユーザー 259-Momone259-Momone
提出日時 2024-11-01 20:21:39
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 1,443 bytes
コンパイル時間 4,270 ms
コンパイル使用メモリ 324,396 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-01 20:21:46
合計ジャッジ時間 6,965 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 43 ms
6,820 KB
testcase_08 AC 43 ms
6,816 KB
testcase_09 AC 43 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 41 ms
6,816 KB
testcase_12 AC 39 ms
6,816 KB
testcase_13 AC 34 ms
6,820 KB
testcase_14 AC 54 ms
6,820 KB
testcase_15 AC 186 ms
6,816 KB
testcase_16 AC 27 ms
6,820 KB
testcase_17 AC 7 ms
6,816 KB
testcase_18 AC 12 ms
6,820 KB
testcase_19 AC 6 ms
6,816 KB
testcase_20 AC 60 ms
6,816 KB
testcase_21 AC 42 ms
6,820 KB
testcase_22 AC 65 ms
6,820 KB
testcase_23 AC 17 ms
6,816 KB
testcase_24 AC 22 ms
6,816 KB
testcase_25 AC 10 ms
6,820 KB
testcase_26 AC 11 ms
6,820 KB
testcase_27 AC 23 ms
6,816 KB
testcase_28 AC 13 ms
6,816 KB
testcase_29 AC 20 ms
6,820 KB
testcase_30 AC 98 ms
6,816 KB
testcase_31 AC 67 ms
6,820 KB
testcase_32 AC 50 ms
6,816 KB
testcase_33 AC 3 ms
6,820 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/extc++.h>

int main() {
    using namespace std;
    const auto find_shortest_path_cost{
        [](const unsigned N, const vector<tuple<unsigned, unsigned, long>> &edges, unsigned start, unsigned goal) -> optional<long> {
            constexpr auto inf{numeric_limits<long>::max() / 2};
            vector<long> distance(N, inf);

            distance[start] = 0;
            for (unsigned j{}; j < 2 * N; j++)
                for (const auto &[from, to, cost] : edges)
                    if (distance[from] != inf && distance[to] > distance[from] + cost)
                        distance[to] = distance[from] + cost;

            for (unsigned i{}; i < 2 * N; i++)
                for (const auto &[from, to, cost] : edges)
                    if (distance[from] != inf && distance[to] > distance[from] + cost)
                        distance[to] = -inf;

            if (distance[goal] == -inf)
                return nullopt;
            return distance[goal];
        }};

    unsigned N, M;
    cin >> N >> M;

    vector<long> A(N);
    for (auto &a : A)
        cin >> a;

    vector<tuple<unsigned, unsigned, long>> edges(M);
    for (auto &[a, b, c] : edges) {
        cin >> a >> b >> c;
        --a;
        --b;
        c = c - A[a];
    }

    if (const auto ans{find_shortest_path_cost(N, edges, 0, N - 1)}; ans)
        cout << A.back() - *ans << endl;
    else
        cout << "inf" << endl;

    return 0;
}
0