結果

問題 No.2852 Yakitori Optimization Problem
ユーザー startcppstartcpp
提出日時 2024-08-25 14:21:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 757 ms
コンパイル使用メモリ 78,328 KB
実行使用メモリ 13,988 KB
最終ジャッジ日時 2024-08-25 14:22:00
合計ジャッジ時間 5,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
6,976 KB
testcase_01 AC 171 ms
11,556 KB
testcase_02 AC 146 ms
9,012 KB
testcase_03 AC 238 ms
12,164 KB
testcase_04 AC 192 ms
12,192 KB
testcase_05 AC 71 ms
7,164 KB
testcase_06 AC 24 ms
6,944 KB
testcase_07 AC 201 ms
11,872 KB
testcase_08 AC 19 ms
6,944 KB
testcase_09 AC 235 ms
13,288 KB
testcase_10 AC 241 ms
13,988 KB
testcase_11 AC 260 ms
13,344 KB
testcase_12 AC 239 ms
12,576 KB
testcase_13 AC 254 ms
12,832 KB
testcase_14 AC 250 ms
12,960 KB
testcase_15 AC 247 ms
12,192 KB
testcase_16 AC 238 ms
13,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#define rep(i, n) for(i = 0; i < n; i++)
#define int long long
using namespace std;
typedef pair<int, int> P;

int n, K;
int a[200000];
int b[200000];
int c[200000];

signed main() {
	int i;

	cin >> n >> K;
	rep(i, n) cin >> a[i];
	rep(i, n) cin >> b[i];
	rep(i, n) cin >> c[i];

	vector<P> pa;
	rep(i, n) {
		pa.push_back(P(b[i] - c[i], i));
	}
	sort(pa.begin(), pa.end(), greater<P>());

	int ans = 0;
	rep(i, n) ans += a[i];
	rep(i, n) {
		if (i < K) ans += b[pa[i].second];
		else ans += c[pa[i].second];
	}

	cout << ans << endl;
	return 0;
}
0