結果

問題 No.2321 Continuous Flip
ユーザー suisensuisen
提出日時 2024-12-14 16:05:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,191 bytes
コンパイル時間 1,196 ms
コンパイル使用メモリ 87,716 KB
実行使用メモリ 21,424 KB
最終ジャッジ日時 2024-12-14 16:05:13
合計ジャッジ時間 10,222 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 WA -
testcase_05 AC 140 ms
15,208 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 141 ms
14,860 KB
testcase_22 WA -
testcase_23 AC 145 ms
14,888 KB
testcase_24 AC 81 ms
17,132 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 64 ms
11,984 KB
testcase_27 AC 67 ms
12,212 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 154 ms
20,788 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 154 ms
19,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <numeric>
#include <queue>
#include <vector>

template <typename T>
using min_priority_queue = std::priority_queue<T, std::vector<T>, std::greater<T>>;


int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    int n, m;
    long long c;
    std::cin >> n >> m >> c;

    std::vector<long long> a(n);
    for (auto& e : a) {
        std::cin >> e;
    }

    std::vector<std::vector<int>> rs(n + 1);
    for (int i = 0; i < m; ++i) {
        int l, r;
        std::cin >> l >> r;
        --l;
        rs[l].push_back(r);
    }

    long long s = std::accumulate(a.begin(), a.end(), 0LL);

    min_priority_queue<std::pair<long long, int>> pq;
    std::vector<long long> d(n + 1, 1LL << 60);
    pq.emplace(d[0] = 0, 0);
    while (pq.size()) {
        auto [du, u] = pq.top();
        pq.pop();
        if (du != d[u]) continue;

        auto update = [&](int v, long long cost) {
            if (d[v] > du + cost) pq.emplace(d[v] = du + cost, v);
        };

        if (u != 0) update(u - 1, a[u - 1]);
        if (u != n) update(u + 1, a[u]);
        for (int r : rs[u]) update(r, c);
    }

    std::cout << s - d[n] << std::endl;
}
0