結果

問題 No.2770 Coupon Optimization
ユーザー hitonanodehitonanode
提出日時 2024-06-21 01:02:25
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 257 ms / 3,000 ms
コード長 549 bytes
コンパイル時間 2,997 ms
コンパイル使用メモリ 143,920 KB
実行使用メモリ 22,996 KB
最終ジャッジ日時 2024-06-21 01:02:34
合計ジャッジ時間 8,112 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 56 ms
11,216 KB
testcase_04 AC 227 ms
22,804 KB
testcase_05 AC 32 ms
11,340 KB
testcase_06 AC 228 ms
22,996 KB
testcase_07 AC 220 ms
22,800 KB
testcase_08 AC 244 ms
22,824 KB
testcase_09 AC 106 ms
11,544 KB
testcase_10 AC 113 ms
11,472 KB
testcase_11 AC 58 ms
6,940 KB
testcase_12 AC 209 ms
16,080 KB
testcase_13 AC 120 ms
12,668 KB
testcase_14 AC 244 ms
22,800 KB
testcase_15 AC 246 ms
22,824 KB
testcase_16 AC 257 ms
22,952 KB
testcase_17 AC 243 ms
22,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/convolution>
#include <iostream>
#include <vector>

using namespace std;

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

    int N, M;
    cin >> N >> M;
    vector<long long> A(N), B(M);
    for (auto &x : A) cin >> x, x /= 100;
    for (auto &x : B) cin >> x;
    sort(A.begin(), A.end());
    sort(B.rbegin(), B.rend());

    const auto C = atcoder::convolution_ll(A, B);
    long long ret = 0;
    for (int i = 0; i < N; ++i) {
        ret += A.at(i) * 100;
        cout << ret - C.at(i) << '\n';
    }
}
0