結果
問題 | No.2852 Yakitori Optimization Problem |
ユーザー | tnakao0123 |
提出日時 | 2024-08-29 13:47:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 906 bytes |
コンパイル時間 | 976 ms |
コンパイル使用メモリ | 49,276 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-08-29 13:47:32 |
合計ジャッジ時間 | 4,874 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
6,820 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 33 ms
6,944 KB |
testcase_06 | AC | 10 ms
6,944 KB |
testcase_07 | RE | - |
testcase_08 | AC | 9 ms
6,944 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
/* -*- coding: utf-8 -*- * * 2852.cc: No.2852 Yakitori Optimization Problem - yukicoder */ #include<cstdio> #include<algorithm> #include<utility> using namespace std; /* constant */ const int MAX_N = 100000; /* typedef */ using ll = long long; using pii = pair<int,int>; /* global variables */ int as[MAX_N], bs[MAX_N], cs[MAX_N]; pii ps[MAX_N]; /* subroutines */ /* main */ int main() { int n, k; scanf("%d%d", &n, &k); for (int i = 0; i < n; i++) scanf("%d", as + i); for (int i = 0; i < n; i++) scanf("%d", bs + i); for (int i = 0; i < n; i++) scanf("%d", cs + i); for (int i = 0; i < n; i++) ps[i] = {cs[i] - bs[i], i}; sort(ps, ps + n); ll sum = 0; for (int i = 0; i < k; i++) { int j = ps[i].second; sum += as[j] + bs[j]; } for (int i = k; i < n; i++) { int j = ps[i].second; sum += as[j] + cs[j]; } printf("%lld\n", sum); return 0; }