結果

問題 No.1678 Coin Trade (Multiple)
ユーザー stoqstoq
提出日時 2021-08-02 02:44:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 309 ms / 5,000 ms
コード長 621 bytes
コンパイル時間 5,638 ms
コンパイル使用メモリ 280,012 KB
実行使用メモリ 20,776 KB
最終ジャッジ日時 2024-06-11 21:33:06
合計ジャッジ時間 11,605 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 60 ms
13,416 KB
testcase_04 AC 172 ms
17,672 KB
testcase_05 AC 112 ms
20,120 KB
testcase_06 AC 98 ms
19,000 KB
testcase_07 AC 148 ms
14,480 KB
testcase_08 AC 113 ms
15,304 KB
testcase_09 AC 117 ms
20,096 KB
testcase_10 AC 50 ms
9,452 KB
testcase_11 AC 136 ms
17,040 KB
testcase_12 AC 47 ms
10,152 KB
testcase_13 AC 242 ms
19,344 KB
testcase_14 AC 94 ms
13,092 KB
testcase_15 AC 116 ms
16,832 KB
testcase_16 AC 69 ms
16,680 KB
testcase_17 AC 119 ms
20,224 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 303 ms
20,648 KB
testcase_49 AC 309 ms
20,588 KB
testcase_50 AC 299 ms
20,480 KB
testcase_51 AC 303 ms
20,648 KB
testcase_52 AC 296 ms
20,608 KB
testcase_53 AC 299 ms
20,520 KB
testcase_54 AC 297 ms
20,520 KB
testcase_55 AC 298 ms
20,520 KB
testcase_56 AC 300 ms
20,776 KB
testcase_57 AC 302 ms
20,516 KB
testcase_58 AC 162 ms
16,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < int(n); i++)

int main() {
  int n, k;
  cin >> n >> k;
  vector<ll> a(n);
  vector<int> m(n);
  vector<vector<int>> b(n);

  rep(i, n) {
    cin >> a[i] >> m[i];
    b[i].resize(m[i]);
    rep(j, m[i]) cin >> b[i][j], b[i][j]--;
  }

  atcoder::mcf_graph<int, ll> G(n);
  const ll M = 1e9;

  rep(i, n) {
    for (auto j : b[i]) G.add_edge(j, i, 1, a[j] - a[i] + (i - j) * M);
  }
  rep(i, n - 1) G.add_edge(i, i + 1, n, M);

  cout << M * (n - 1) * k - G.flow(0, n - 1, k).second << "\n";
}
0