結果

問題 No.2852 Yakitori Optimization Problem
ユーザー saisai
提出日時 2024-08-25 13:41:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 2,817 ms
コンパイル使用メモリ 258,760 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-08-25 13:41:21
合計ジャッジ時間 5,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
6,812 KB
testcase_01 AC 61 ms
8,832 KB
testcase_02 AC 53 ms
7,936 KB
testcase_03 AC 85 ms
10,752 KB
testcase_04 AC 67 ms
9,344 KB
testcase_05 AC 25 ms
6,940 KB
testcase_06 AC 9 ms
6,944 KB
testcase_07 AC 65 ms
9,344 KB
testcase_08 AC 7 ms
6,940 KB
testcase_09 AC 80 ms
10,752 KB
testcase_10 AC 93 ms
11,136 KB
testcase_11 AC 90 ms
11,136 KB
testcase_12 AC 84 ms
11,072 KB
testcase_13 AC 87 ms
11,016 KB
testcase_14 AC 85 ms
11,016 KB
testcase_15 AC 86 ms
11,020 KB
testcase_16 AC 87 ms
11,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

void solve() {
  int N, K; std::cin >> N >> K;
  std::vector<long long> A(N), B(N), C(N);
  for (auto &a : A) std::cin >> a;
  for (auto &b : B) std::cin >> b;
  for (auto &c : C) std::cin >> c;
  long long ans = 0;
  for (auto a : A) ans += a;
  std::vector<std::pair<long long, long long>> P(N);
  for (int i = 0; i < N; i++) P[i] = std::make_pair(B[i]-C[i], i);
  std::sort(P.begin(), P.end(), std::greater<std::pair<long long, long long>>());
  std::vector<bool> solt(N, false);
  for (int i = 0; i < K; i++) solt[P[i].second] = true;
  for (int i = 0; i < N; i++) {
    if (solt[i]) ans += B[i];
    else ans += C[i];
  }
  std::cout << ans << std::endl;
}

int main() {
  std::ios::sync_with_stdio(false);
	std::cin.tie(nullptr);

  int testcases = 1;
  //std::cin >> testcases;
  for (;testcases--;) solve();

  return 0;
}
0