結果

問題 No.1678 Coin Trade (Multiple)
ユーザー norikamenorikame
提出日時 2021-09-11 13:07:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 230 ms / 5,000 ms
コード長 991 bytes
コンパイル時間 5,037 ms
コンパイル使用メモリ 280,656 KB
実行使用メモリ 20,584 KB
最終ジャッジ日時 2024-06-22 21:05:07
合計ジャッジ時間 10,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 53 ms
13,364 KB
testcase_04 AC 134 ms
17,524 KB
testcase_05 AC 96 ms
19,816 KB
testcase_06 AC 85 ms
18,832 KB
testcase_07 AC 124 ms
14,368 KB
testcase_08 AC 93 ms
15,084 KB
testcase_09 AC 95 ms
19,964 KB
testcase_10 AC 42 ms
9,492 KB
testcase_11 AC 109 ms
17,140 KB
testcase_12 AC 42 ms
10,032 KB
testcase_13 AC 182 ms
19,020 KB
testcase_14 AC 81 ms
13,168 KB
testcase_15 AC 93 ms
16,524 KB
testcase_16 AC 57 ms
16,692 KB
testcase_17 AC 98 ms
20,140 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 1 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 1 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 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 1 ms
5,376 KB
testcase_39 AC 1 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 1 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
testcase_48 AC 223 ms
20,456 KB
testcase_49 AC 226 ms
20,584 KB
testcase_50 AC 224 ms
20,344 KB
testcase_51 AC 225 ms
20,256 KB
testcase_52 AC 230 ms
20,456 KB
testcase_53 AC 227 ms
20,576 KB
testcase_54 AC 228 ms
20,476 KB
testcase_55 AC 222 ms
20,312 KB
testcase_56 AC 217 ms
20,448 KB
testcase_57 AC 223 ms
20,328 KB
testcase_58 AC 147 ms
16,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;

#define rep(i, n) for (int i=0; i<(int)(n); ++(i))
#define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i))
#define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i))
#define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i))
#define all(x) (x).begin(), (x).end()

// 

const ll BIAS = (ll)(1e9);

int main() {
    int n, k;
    cin >> n >> k;
    vector<int> a(n), m(n);
    vector<vector<int>> b(n);
    rep(i, n) {
        cin >> a[i] >> m[i];
        vector<int> bi(m[i]);
        rep(j, m[i]) {
            cin >> bi[j];
            bi[j]--;
        }
        b[i] = bi;
    }
    mcf_graph<int, ll> g(n);
    rep(i, n-1) g.add_edge(i, i+1, k, BIAS);
    rep(i, n) rep(j, m[i]) g.add_edge(b[i][j], i, 1, (a[b[i][j]]-a[i])+(i-b[i][j])*BIAS);
    auto p = g.flow(0, n-1, k);
    ll res = -(p.second - (n-1) * k * BIAS);
    cout << res << endl;
    return 0;
}
0