結果

問題 No.2321 Continuous Flip
ユーザー t98slidert98slider
提出日時 2023-05-27 06:41:11
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 1,073 bytes
コンパイル時間 2,036 ms
コンパイル使用メモリ 183,500 KB
実行使用メモリ 41,148 KB
最終ジャッジ日時 2024-12-25 16:21:16
合計ジャッジ時間 11,706 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 305 ms
35,360 KB
testcase_05 AC 269 ms
35,464 KB
testcase_06 AC 277 ms
35,368 KB
testcase_07 AC 273 ms
35,476 KB
testcase_08 AC 291 ms
35,508 KB
testcase_09 AC 306 ms
35,508 KB
testcase_10 AC 284 ms
35,360 KB
testcase_11 AC 281 ms
35,472 KB
testcase_12 AC 255 ms
35,348 KB
testcase_13 AC 266 ms
35,320 KB
testcase_14 AC 295 ms
35,468 KB
testcase_15 AC 310 ms
35,344 KB
testcase_16 AC 280 ms
35,376 KB
testcase_17 AC 282 ms
35,512 KB
testcase_18 AC 288 ms
35,316 KB
testcase_19 AC 284 ms
35,352 KB
testcase_20 AC 259 ms
35,368 KB
testcase_21 AC 265 ms
35,416 KB
testcase_22 AC 283 ms
35,316 KB
testcase_23 AC 270 ms
35,428 KB
testcase_24 AC 100 ms
27,520 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 90 ms
27,640 KB
testcase_27 AC 99 ms
30,040 KB
testcase_28 AC 190 ms
41,128 KB
testcase_29 AC 215 ms
41,148 KB
testcase_30 AC 198 ms
41,020 KB
testcase_31 AC 213 ms
41,016 KB
testcase_32 AC 205 ms
41,012 KB
testcase_33 AC 217 ms
41,144 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