結果

問題 No.1678 Coin Trade (Multiple)
ユーザー chocoruskchocorusk
提出日時 2021-08-01 22:47:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 289 ms / 5,000 ms
コード長 487 bytes
コンパイル時間 3,580 ms
コンパイル使用メモリ 176,060 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-06-11 21:32:12
合計ジャッジ時間 9,875 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 59 ms
12,656 KB
testcase_04 AC 166 ms
15,976 KB
testcase_05 AC 108 ms
17,860 KB
testcase_06 AC 94 ms
17,052 KB
testcase_07 AC 141 ms
13,544 KB
testcase_08 AC 109 ms
14,096 KB
testcase_09 AC 111 ms
17,908 KB
testcase_10 AC 49 ms
9,304 KB
testcase_11 AC 131 ms
15,572 KB
testcase_12 AC 46 ms
9,824 KB
testcase_13 AC 234 ms
17,320 KB
testcase_14 AC 92 ms
12,452 KB
testcase_15 AC 108 ms
15,300 KB
testcase_16 AC 64 ms
15,300 KB
testcase_17 AC 114 ms
17,996 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 3 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 3 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 287 ms
18,392 KB
testcase_49 AC 277 ms
18,388 KB
testcase_50 AC 278 ms
18,260 KB
testcase_51 AC 286 ms
18,264 KB
testcase_52 AC 279 ms
18,432 KB
testcase_53 AC 281 ms
18,336 KB
testcase_54 AC 284 ms
18,392 KB
testcase_55 AC 283 ms
18,332 KB
testcase_56 AC 288 ms
18,392 KB
testcase_57 AC 289 ms
18,388 KB
testcase_58 AC 161 ms
14,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
int main()
{
	int n, k;
	cin>>n>>k;
	mcf_graph<int, ll> g(n);
	ll a[50050];
    const ll geta=1e9;
	for(int i=0; i<n; i++){
		cin>>a[i];
		int m; cin>>m;
		for(int j=0; j<m; j++){
			int b; cin>>b; b--;
			g.add_edge(b, i, 1, a[b]-a[i]+geta*(i-b));
		}
	}
	for(int i=0; i<n-1; i++) g.add_edge(i, i+1, k, geta);
	cout<<geta*(n-1)*k-g.flow(0, n-1, k).second<<endl;
    return 0;
}
0