結果

問題 No.2321 Continuous Flip
ユーザー hitonanodehitonanode
提出日時 2023-05-26 23:32:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 1,608 ms
コンパイル使用メモリ 127,408 KB
実行使用メモリ 118,228 KB
最終ジャッジ日時 2024-06-07 09:20:01
合計ジャッジ時間 14,366 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 374 ms
118,228 KB
testcase_05 AC 324 ms
118,216 KB
testcase_06 AC 383 ms
118,096 KB
testcase_07 AC 331 ms
118,100 KB
testcase_08 AC 395 ms
118,100 KB
testcase_09 AC 397 ms
118,096 KB
testcase_10 AC 370 ms
118,220 KB
testcase_11 AC 399 ms
118,100 KB
testcase_12 AC 367 ms
118,096 KB
testcase_13 AC 401 ms
118,092 KB
testcase_14 AC 392 ms
118,224 KB
testcase_15 AC 341 ms
118,096 KB
testcase_16 AC 399 ms
118,228 KB
testcase_17 AC 393 ms
118,224 KB
testcase_18 AC 360 ms
118,096 KB
testcase_19 AC 408 ms
118,224 KB
testcase_20 AC 410 ms
118,096 KB
testcase_21 AC 390 ms
118,096 KB
testcase_22 AC 367 ms
118,096 KB
testcase_23 AC 318 ms
118,096 KB
testcase_24 AC 303 ms
118,096 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 266 ms
118,224 KB
testcase_27 AC 293 ms
118,228 KB
testcase_28 AC 357 ms
118,068 KB
testcase_29 AC 354 ms
118,228 KB
testcase_30 AC 332 ms
118,092 KB
testcase_31 AC 348 ms
118,096 KB
testcase_32 AC 351 ms
118,224 KB
testcase_33 AC 332 ms
118,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <atcoder/mincostflow>
using namespace std;

int main() {
    long long N, M, C, a, l, r, ret = 0;
    cin >> N >> M >> C;
    atcoder::mcf_graph<int, long long> mcf(N + 1);
    for (int i = 0; i < N; ++i) cin >> a, mcf.add_edge(i, i + 1, 1, a), mcf.add_edge(i + 1, i, 1, a), ret += a;
    while (M--) cin >> l >> r, --l, mcf.add_edge(l, r, 1, C), mcf.add_edge(r, l, 1, C);
    cout << ret - mcf.flow(0, N, 1).second << endl;
}
0