結果

問題 No.2321 Continuous Flip
ユーザー suisensuisen
提出日時 2024-12-14 16:17:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 1,271 bytes
コンパイル時間 1,091 ms
コンパイル使用メモリ 87,572 KB
実行使用メモリ 28,600 KB
最終ジャッジ日時 2024-12-14 16:18:00
合計ジャッジ時間 10,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 248 ms
25,032 KB
testcase_05 AC 242 ms
25,024 KB
testcase_06 AC 271 ms
25,020 KB
testcase_07 AC 241 ms
25,032 KB
testcase_08 AC 240 ms
25,024 KB
testcase_09 AC 236 ms
25,144 KB
testcase_10 AC 244 ms
25,152 KB
testcase_11 AC 272 ms
25,024 KB
testcase_12 AC 240 ms
25,148 KB
testcase_13 AC 242 ms
25,152 KB
testcase_14 AC 249 ms
25,020 KB
testcase_15 AC 261 ms
25,144 KB
testcase_16 AC 275 ms
25,020 KB
testcase_17 AC 243 ms
24,896 KB
testcase_18 AC 243 ms
25,020 KB
testcase_19 AC 242 ms
25,024 KB
testcase_20 AC 275 ms
25,012 KB
testcase_21 AC 249 ms
25,148 KB
testcase_22 AC 245 ms
25,016 KB
testcase_23 AC 239 ms
24,888 KB
testcase_24 AC 100 ms
28,056 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 70 ms
17,408 KB
testcase_27 AC 74 ms
18,044 KB
testcase_28 AC 205 ms
28,596 KB
testcase_29 AC 186 ms
28,592 KB
testcase_30 AC 191 ms
28,464 KB
testcase_31 AC 183 ms
28,600 KB
testcase_32 AC 182 ms
28,592 KB
testcase_33 AC 195 ms
28,468 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>> ls(n + 1), rs(n + 1);
    for (int i = 0; i < m; ++i) {
        int l, r;
        std::cin >> l >> r;
        --l;
        ls[r].push_back(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);
        for (int l : ls[u]) update(l, c);
    }

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