結果

問題 No.1678 Coin Trade (Multiple)
ユーザー googol_S0googol_S0
提出日時 2021-09-10 22:48:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 393 ms / 5,000 ms
コード長 689 bytes
コンパイル時間 5,570 ms
コンパイル使用メモリ 279,332 KB
実行使用メモリ 40,288 KB
最終ジャッジ日時 2024-06-12 02:22:43
合計ジャッジ時間 12,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 63 ms
18,740 KB
testcase_04 AC 213 ms
31,568 KB
testcase_05 AC 144 ms
38,212 KB
testcase_06 AC 111 ms
35,284 KB
testcase_07 AC 162 ms
21,708 KB
testcase_08 AC 129 ms
24,400 KB
testcase_09 AC 138 ms
38,396 KB
testcase_10 AC 47 ms
9,552 KB
testcase_11 AC 156 ms
29,392 KB
testcase_12 AC 44 ms
10,212 KB
testcase_13 AC 308 ms
36,368 KB
testcase_14 AC 103 ms
18,132 KB
testcase_15 AC 131 ms
28,496 KB
testcase_16 AC 73 ms
28,756 KB
testcase_17 AC 143 ms
39,124 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 1 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 1 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 1 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 382 ms
40,272 KB
testcase_49 AC 380 ms
40,248 KB
testcase_50 AC 386 ms
40,240 KB
testcase_51 AC 366 ms
40,268 KB
testcase_52 AC 375 ms
40,212 KB
testcase_53 AC 375 ms
40,288 KB
testcase_54 AC 393 ms
40,272 KB
testcase_55 AC 375 ms
40,144 KB
testcase_56 AC 385 ms
40,144 KB
testcase_57 AC 379 ms
40,280 KB
testcase_58 AC 181 ms
36,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
int main(){
  ll INF=1000000000;
  int N,K;
  cin>>N>>K;
  mcf_graph<int,ll> G(N*3+2);
  int m;
  ll a;
  int x;
  G.add_edge(N*3,N*2,K,0);
  G.add_edge(N*3-1,N*3+1,K,INF);
  for(int i=0;i<N;i++){
    cin>>a>>m;
    if(i){
      G.add_edge(N*2+i-1,N*2+i,K,INF);
    }
    G.add_edge(N*2+i,i,K,a);
    G.add_edge(i,i+N,K,0);
    if(i+1==N){
      G.add_edge(i+N,N*3+1,K,INF-a);
    }else{
      G.add_edge(i+N,N*2+i+1,K,INF-a);
    }
    for(int j=0;j<m;j++){
      cin>>x;
      G.add_edge(x+N-1,i,1,INF*(i-x+1));
    }
  }
  cout<<INF*N*K-G.flow(N*3,N*3+1,K).second<<"\n";
}
0