結果

問題 No.2321 Continuous Flip
ユーザー t98slidert98slider
提出日時 2023-05-27 06:58:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 4,573 ms
コンパイル使用メモリ 247,792 KB
実行使用メモリ 118,252 KB
最終ジャッジ日時 2024-06-07 12:58:45
合計ジャッジ時間 15,638 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 319 ms
118,124 KB
testcase_05 AC 215 ms
118,120 KB
testcase_06 AC 309 ms
118,148 KB
testcase_07 AC 216 ms
118,120 KB
testcase_08 AC 343 ms
118,124 KB
testcase_09 AC 326 ms
118,244 KB
testcase_10 AC 303 ms
118,120 KB
testcase_11 AC 348 ms
118,124 KB
testcase_12 AC 300 ms
118,124 KB
testcase_13 AC 346 ms
118,120 KB
testcase_14 AC 332 ms
117,996 KB
testcase_15 AC 264 ms
118,120 KB
testcase_16 AC 340 ms
118,120 KB
testcase_17 AC 336 ms
117,992 KB
testcase_18 AC 285 ms
118,120 KB
testcase_19 AC 360 ms
118,116 KB
testcase_20 AC 363 ms
117,992 KB
testcase_21 AC 337 ms
118,124 KB
testcase_22 AC 273 ms
117,992 KB
testcase_23 AC 210 ms
117,988 KB
testcase_24 AC 189 ms
118,124 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 163 ms
118,248 KB
testcase_27 AC 179 ms
118,244 KB
testcase_28 AC 294 ms
118,120 KB
testcase_29 AC 295 ms
118,124 KB
testcase_30 AC 269 ms
118,252 KB
testcase_31 AC 299 ms
118,124 KB
testcase_32 AC 292 ms
118,248 KB
testcase_33 AC 240 ms
118,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m, c, v, u;
    ll s = 0;
    cin >> n >> m >> c;
    atcoder::mcf_graph<int, ll> g(n + 1);
    for(int i = 0; i < n; i++){
        cin >> v;
        s += v;
        g.add_edge(i, i + 1, 1, v);
        g.add_edge(i + 1, i, 1, v);
    }
    while(m--){
        cin >> u >> v;
        u--;
        g.add_edge(u, v, 1, c);
        g.add_edge(v, u, 1, c);
    }
    cout << s - g.flow(0, n, 1).second << '\n';
}
0