結果

問題 No.2321 Continuous Flip
ユーザー tatyamtatyam
提出日時 2023-02-16 05:27:29
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 390 ms / 2,000 ms
コード長 1,172 bytes
コンパイル時間 3,457 ms
コンパイル使用メモリ 257,592 KB
実行使用メモリ 38,800 KB
最終ジャッジ日時 2024-06-07 04:48:26
合計ジャッジ時間 14,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 344 ms
33,084 KB
testcase_05 AC 352 ms
32,992 KB
testcase_06 AC 382 ms
33,024 KB
testcase_07 AC 327 ms
33,008 KB
testcase_08 AC 331 ms
33,032 KB
testcase_09 AC 363 ms
33,032 KB
testcase_10 AC 331 ms
33,016 KB
testcase_11 AC 340 ms
32,992 KB
testcase_12 AC 332 ms
33,128 KB
testcase_13 AC 390 ms
32,972 KB
testcase_14 AC 325 ms
32,992 KB
testcase_15 AC 357 ms
32,872 KB
testcase_16 AC 353 ms
33,148 KB
testcase_17 AC 336 ms
33,036 KB
testcase_18 AC 321 ms
32,968 KB
testcase_19 AC 321 ms
33,004 KB
testcase_20 AC 354 ms
33,024 KB
testcase_21 AC 339 ms
33,128 KB
testcase_22 AC 380 ms
32,956 KB
testcase_23 AC 360 ms
33,084 KB
testcase_24 AC 103 ms
25,140 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 93 ms
25,140 KB
testcase_27 AC 100 ms
27,588 KB
testcase_28 AC 231 ms
38,656 KB
testcase_29 AC 230 ms
38,672 KB
testcase_30 AC 233 ms
38,668 KB
testcase_31 AC 228 ms
38,668 KB
testcase_32 AC 226 ms
38,796 KB
testcase_33 AC 235 ms
38,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll INF = LLONG_MAX / 4;


int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    ll N, M, C;
    cin >> N >> M >> C;
    vector<vector<pair<ll, ll>>> g(N + 1);
    auto add_edge = [&](ll i, ll j, ll c) {
        g[i].emplace_back(j, c);
        g[j].emplace_back(i, c);
    };
    ll ans = 0;
    for(ll i = 0; i < N; i++) {
        ll A;
        cin >> A;
        add_edge(i, i + 1, A);
        ans += A;
    }
    while(M--) {
        ll L, R;
        cin >> L >> R;
        add_edge(--L, R, C);
    }
    auto dijkstra = [&](ll s) -> vector<ll> {
        vector cost(N + 1, LLONG_MAX);
        priority_queue q(greater<>{}, vector<pair<ll, ll>>{});
        auto push = [&](ll i, ll c) {
            if(cost[i] <= c) return;
            cost[i] = c;
            q.emplace(c, i);
        };
        push(s, 0);
        while(q.size()) {
            auto [c, i] = q.top();
            q.pop();
            if(cost[i] != c) continue;
            for(auto [j, d] : g[i]) push(j, c + d);
        }
        return cost;
    };
    ans -= dijkstra(0)[N];
    cout << ans << endl;
}
0