結果

問題 No.2770 Coupon Optimization
ユーザー atcoder8atcoder8
提出日時 2024-05-31 22:53:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 266 ms / 3,000 ms
コード長 742 bytes
コンパイル時間 7,460 ms
コンパイル使用メモリ 312,836 KB
実行使用メモリ 24,516 KB
最終ジャッジ日時 2024-12-21 00:59:55
合計ジャッジ時間 10,507 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 66 ms
12,772 KB
testcase_04 AC 249 ms
24,388 KB
testcase_05 AC 31 ms
11,220 KB
testcase_06 AC 241 ms
24,388 KB
testcase_07 AC 243 ms
24,512 KB
testcase_08 AC 264 ms
24,392 KB
testcase_09 AC 110 ms
11,720 KB
testcase_10 AC 122 ms
12,208 KB
testcase_11 AC 63 ms
7,320 KB
testcase_12 AC 219 ms
16,940 KB
testcase_13 AC 128 ms
13,516 KB
testcase_14 AC 263 ms
24,384 KB
testcase_15 AC 266 ms
24,388 KB
testcase_16 AC 264 ms
24,384 KB
testcase_17 AC 259 ms
24,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);

    ll n, m;
    cin >> n >> m;
    vector<ll> aa(n);
    for (int i = 0; i < n; i++) cin >> aa[i];
    sort(aa.begin(), aa.end());
    vector<ll> bb(m);
    for (int i = 0; i < m; i++) cin >> bb[i];
    sort(bb.begin(), bb.end(), greater<ll>());

    vector<ll> prefix_sum(n + 1);
    for (ll i = 0; i < n; i++) {
        prefix_sum[i + 1] = prefix_sum[i] + aa[i];
    }

    auto conv = convolution_ll(aa, bb);
    for (ll i = 1; i <= n; i++) {
        cout << (prefix_sum[i] - conv[i - 1] / 100) << "\n";
    }
}
0