結果

問題 No.2321 Continuous Flip
ユーザー t98slidert98slider
提出日時 2023-05-27 06:41:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 1,073 bytes
コンパイル時間 1,698 ms
コンパイル使用メモリ 183,828 KB
実行使用メモリ 41,152 KB
最終ジャッジ日時 2024-06-07 12:51:59
合計ジャッジ時間 10,963 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 282 ms
35,436 KB
testcase_05 AC 283 ms
35,336 KB
testcase_06 AC 275 ms
35,368 KB
testcase_07 AC 279 ms
35,480 KB
testcase_08 AC 274 ms
35,380 KB
testcase_09 AC 277 ms
35,512 KB
testcase_10 AC 289 ms
35,488 KB
testcase_11 AC 278 ms
35,476 KB
testcase_12 AC 279 ms
35,352 KB
testcase_13 AC 270 ms
35,320 KB
testcase_14 AC 271 ms
35,468 KB
testcase_15 AC 281 ms
35,352 KB
testcase_16 AC 281 ms
35,496 KB
testcase_17 AC 271 ms
35,388 KB
testcase_18 AC 274 ms
35,316 KB
testcase_19 AC 288 ms
35,428 KB
testcase_20 AC 279 ms
35,272 KB
testcase_21 AC 284 ms
35,476 KB
testcase_22 AC 292 ms
35,304 KB
testcase_23 AC 285 ms
35,432 KB
testcase_24 AC 102 ms
27,556 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 97 ms
27,636 KB
testcase_27 AC 100 ms
30,080 KB
testcase_28 AC 212 ms
40,960 KB
testcase_29 AC 215 ms
41,148 KB
testcase_30 AC 226 ms
41,152 KB
testcase_31 AC 213 ms
41,016 KB
testcase_32 AC 216 ms
41,144 KB
testcase_33 AC 221 ms
41,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m, c, v, u, L, R;
    ll d, w;
    cin >> n >> m >> c;
    vector<vector<pair<int, ll>>> g(n + 1);
    vector<int> a(n);
    vector<ll> as(n + 1), dist(n + 1, 1ll << 60);
    for(int i = 0; i < n; i++){
        cin >> a[i];
        as[i + 1] = as[i] + a[i];
        g[i].emplace_back(i + 1, a[i]);
        g[i + 1].emplace_back(i, a[i]);
    }
    for(int i = 0; i < m; i++){
        cin >> L >> R;
        L--;
        g[L].emplace_back(R, c);
        g[R].emplace_back(L, c);
    }
    priority_queue<pair<ll,int>, vector<pair<ll,int>>, greater<pair<ll,int>>> pq;
    dist[0] = 0;
    pq.emplace(0, 0);
    while(!pq.empty()){
        tie(d, v) = pq.top();
        pq.pop();
        if(d > dist[v]) continue;
        for(auto &&pa : g[v]){
            tie(u, w) = pa;
            if(d + w >= dist[u]) continue;
            dist[u] = d + w;
            pq.emplace(dist[u], u);
        }
    }
    cout << as[n] - dist[n] << '\n';
}
0