結果

問題 No.2770 Coupon Optimization
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-31 23:26:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 270 ms / 3,000 ms
コード長 628 bytes
コンパイル時間 3,487 ms
コンパイル使用メモリ 238,128 KB
実行使用メモリ 22,972 KB
最終ジャッジ日時 2024-05-31 23:26:52
合計ジャッジ時間 8,942 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 218 ms
22,828 KB
testcase_04 AC 227 ms
22,972 KB
testcase_05 AC 30 ms
10,884 KB
testcase_06 AC 227 ms
22,716 KB
testcase_07 AC 249 ms
22,956 KB
testcase_08 AC 247 ms
22,952 KB
testcase_09 AC 105 ms
11,540 KB
testcase_10 AC 118 ms
12,732 KB
testcase_11 AC 101 ms
10,952 KB
testcase_12 AC 206 ms
15,948 KB
testcase_13 AC 121 ms
12,792 KB
testcase_14 AC 270 ms
22,956 KB
testcase_15 AC 246 ms
22,712 KB
testcase_16 AC 246 ms
22,828 KB
testcase_17 AC 248 ms
22,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/convolution>
using namespace std;
using namespace atcoder;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n, m;
    cin >> n >> m;
    vector<long long> a(n), b(max(n, m), 100);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        a[i] /= 100;
    }
    for (int i = 0; i < m; i++) {
        cin >> b[i];
        b[i] = 100 - b[i];
    }
    sort(a.begin(), a.end());
    sort(b.begin(), b.end());
    auto f = convolution_ll(a, b);
    for (int i = 0; i < n; i++) {
        cout << f[i] << "\n";
    }
}
0