結果
問題 | No.2852 Yakitori Optimization Problem |
ユーザー | VvyLw |
提出日時 | 2024-08-25 18:02:27 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 100 ms / 2,000 ms |
コード長 | 971 bytes |
コンパイル時間 | 4,028 ms |
コンパイル使用メモリ | 148,472 KB |
実行使用メモリ | 8,832 KB |
最終ジャッジ日時 | 2024-08-25 18:02:35 |
合計ジャッジ時間 | 6,794 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
6,816 KB |
testcase_01 | AC | 70 ms
7,168 KB |
testcase_02 | AC | 57 ms
6,944 KB |
testcase_03 | AC | 93 ms
8,448 KB |
testcase_04 | AC | 76 ms
7,552 KB |
testcase_05 | AC | 28 ms
6,940 KB |
testcase_06 | AC | 11 ms
6,940 KB |
testcase_07 | AC | 75 ms
7,424 KB |
testcase_08 | AC | 8 ms
6,944 KB |
testcase_09 | AC | 100 ms
8,448 KB |
testcase_10 | AC | 97 ms
8,704 KB |
testcase_11 | AC | 98 ms
8,704 KB |
testcase_12 | AC | 94 ms
8,832 KB |
testcase_13 | AC | 94 ms
8,704 KB |
testcase_14 | AC | 98 ms
8,832 KB |
testcase_15 | AC | 97 ms
8,704 KB |
testcase_16 | AC | 96 ms
8,704 KB |
ソースコード
#pragma GCC optimize("O2") #ifdef local #include <C++/core/io/debug_print.hpp> #else #define dump(...) void(0); #endif #include <iostream> #include <valarray> #include <algorithm> #include <numeric> #include <ranges> namespace man { } int main() { std::cin.tie(nullptr) -> sync_with_stdio(false); int n, k; std::cin >> n >> k; std::valarray<int> a(n), b(n), c(n); for(auto &e: a) { std::cin >> e; } for(auto &e: b) { std::cin >> e; } for(auto &e: c) { std::cin >> e; } std::valarray<int> d = b - c, id(n); std::iota(std::begin(id), std::end(id), 0); dump(d); std::ranges::sort(id, [&](const int i, const int j) -> bool { return d[i] > d[j]; }); dump(id); std::valarray<int64_t> ret(n); for(const auto &i: std::views::iota(0, n)) { const int j = id[i]; ret[i] = a[j] + (i < k ? b[j] : c[j]); } dump(ret); std::cout << ret.sum() << '\n'; }