結果
問題 | No.2852 Yakitori Optimization Problem |
ユーザー | Daniel K |
提出日時 | 2024-08-25 13:50:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 96 ms / 2,000 ms |
コード長 | 1,145 bytes |
コンパイル時間 | 1,137 ms |
コンパイル使用メモリ | 120,844 KB |
実行使用メモリ | 10,240 KB |
最終ジャッジ日時 | 2024-08-25 13:51:00 |
合計ジャッジ時間 | 3,528 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
6,816 KB |
testcase_01 | AC | 66 ms
8,320 KB |
testcase_02 | AC | 55 ms
7,424 KB |
testcase_03 | AC | 90 ms
10,112 KB |
testcase_04 | AC | 71 ms
8,704 KB |
testcase_05 | AC | 27 ms
6,940 KB |
testcase_06 | AC | 10 ms
6,944 KB |
testcase_07 | AC | 72 ms
8,704 KB |
testcase_08 | AC | 8 ms
6,940 KB |
testcase_09 | AC | 92 ms
9,984 KB |
testcase_10 | AC | 94 ms
10,112 KB |
testcase_11 | AC | 96 ms
10,240 KB |
testcase_12 | AC | 96 ms
10,240 KB |
testcase_13 | AC | 92 ms
10,112 KB |
testcase_14 | AC | 94 ms
10,240 KB |
testcase_15 | AC | 94 ms
10,240 KB |
testcase_16 | AC | 92 ms
10,240 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <list> #include <set> #include <unordered_set> #include <map> #include <unordered_map> #include <cmath> #include <utility> #include <sstream> #include <queue> #include <queue> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n, k; cin >> n >>k; vector<int64_t> delicious(n); vector<int64_t> with_sauce(n), with_salt(n), diff(n); vector<int> range(n); for (int i=0; i < n; ++i) { cin >> delicious[i]; range[i] = i; } for (int i=0; i < n; ++i) { cin >> with_sauce[i]; with_sauce[i] += delicious[i]; } for (int i=0; i < n; ++i) { cin >> with_salt[i]; with_salt[i] += delicious[i]; } for (int i=0;i < n; ++i) { diff[i] = with_sauce[i] - with_salt[i]; } std::sort(range.begin(), range.end(), [&](int a, int b) { return diff[a] < diff[b]; }); int64_t score = 0; for (int i=0; i < n; ++i) { if (i < k) { score += with_sauce[range[n-1-i]]; } else { score += with_salt[range[n-1-i]]; } } cout << score << endl; return 0; }