結果

問題 No.1678 Coin Trade (Multiple)
ユーザー merom686merom686
提出日時 2021-09-10 23:21:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 257 ms / 5,000 ms
コード長 711 bytes
コンパイル時間 2,681 ms
コンパイル使用メモリ 226,396 KB
実行使用メモリ 18,092 KB
最終ジャッジ日時 2024-06-12 04:09:11
合計ジャッジ時間 8,542 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 47 ms
12,444 KB
testcase_04 AC 141 ms
15,608 KB
testcase_05 AC 85 ms
17,444 KB
testcase_06 AC 69 ms
16,780 KB
testcase_07 AC 126 ms
13,236 KB
testcase_08 AC 92 ms
13,760 KB
testcase_09 AC 88 ms
17,696 KB
testcase_10 AC 46 ms
9,068 KB
testcase_11 AC 111 ms
15,208 KB
testcase_12 AC 42 ms
9,836 KB
testcase_13 AC 206 ms
16,916 KB
testcase_14 AC 81 ms
12,180 KB
testcase_15 AC 90 ms
14,940 KB
testcase_16 AC 45 ms
15,076 KB
testcase_17 AC 89 ms
17,832 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 246 ms
18,092 KB
testcase_49 AC 245 ms
18,092 KB
testcase_50 AC 245 ms
17,968 KB
testcase_51 AC 241 ms
17,960 KB
testcase_52 AC 242 ms
18,092 KB
testcase_53 AC 245 ms
17,968 KB
testcase_54 AC 248 ms
18,088 KB
testcase_55 AC 248 ms
18,088 KB
testcase_56 AC 248 ms
18,092 KB
testcase_57 AC 257 ms
18,092 KB
testcase_58 AC 140 ms
14,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int n, k;
    cin >> n >> k;

    atcoder::mcf_graph<int, ll> g(n);

    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];

        int m;
        cin >> m;

        if (i == 0) continue;

        g.add_edge(i - 1, i, k, 1 << 30);

        for (int j = 0; j < m; j++) {
            int b;
            cin >> b;
            b--;

            g.add_edge(b, i, 1, ((ll)(i - b) << 30) - a[i] + a[b]);
        }
    }
    auto p = g.flow(0, n - 1, k);
    cout << ((ll)((n - 1) * k) << 30) - p.second << endl;

    return 0;
}
0