結果

問題 No.2770 Coupon Optimization
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-31 23:26:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 265 ms / 3,000 ms
コード長 628 bytes
コンパイル時間 3,775 ms
コンパイル使用メモリ 236,420 KB
実行使用メモリ 22,952 KB
最終ジャッジ日時 2024-12-21 01:42:08
合計ジャッジ時間 9,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 232 ms
22,856 KB
testcase_04 AC 241 ms
22,824 KB
testcase_05 AC 32 ms
11,088 KB
testcase_06 AC 246 ms
22,920 KB
testcase_07 AC 240 ms
22,828 KB
testcase_08 AC 265 ms
22,832 KB
testcase_09 AC 112 ms
11,408 KB
testcase_10 AC 125 ms
12,728 KB
testcase_11 AC 105 ms
10,992 KB
testcase_12 AC 221 ms
15,948 KB
testcase_13 AC 129 ms
12,788 KB
testcase_14 AC 263 ms
22,904 KB
testcase_15 AC 263 ms
22,912 KB
testcase_16 AC 261 ms
22,952 KB
testcase_17 AC 260 ms
22,844 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