結果

問題 No.2770 Coupon Optimization
ユーザー RiRinbaruRiRinbaru
提出日時 2024-05-31 23:50:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 498 ms / 3,000 ms
コード長 1,266 bytes
コンパイル時間 4,334 ms
コンパイル使用メモリ 233,496 KB
実行使用メモリ 24,604 KB
最終ジャッジ日時 2024-05-31 23:51:04
合計ジャッジ時間 12,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 457 ms
22,936 KB
testcase_04 AC 491 ms
24,604 KB
testcase_05 AC 17 ms
6,944 KB
testcase_06 AC 477 ms
24,384 KB
testcase_07 AC 493 ms
24,428 KB
testcase_08 AC 489 ms
24,516 KB
testcase_09 AC 109 ms
7,780 KB
testcase_10 AC 234 ms
13,320 KB
testcase_11 AC 195 ms
11,032 KB
testcase_12 AC 272 ms
15,132 KB
testcase_13 AC 233 ms
13,112 KB
testcase_14 AC 498 ms
24,392 KB
testcase_15 AC 489 ms
24,516 KB
testcase_16 AC 492 ms
24,516 KB
testcase_17 AC 496 ms
24,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, p, n) for (ll i = p; i < (ll)(n); i++)
#define rep2(i, p, n) for (ll i = p; i >= (ll)(n); i--)
using namespace std;
using ll = long long;
using ld = long double;
double pi = 3.141592653589793;
const long long inf = 2 * 1e9;
const long long linf = 4 * 1e18;
template <class T>
inline bool chmax(T &a, T b)
{
    if (a < b)
    {
        a = b;
        return 1;
    }
    return 0;
}
template <class T>
inline bool chmin(T &a, T b)
{
    if (a > b)
    {
        a = b;
        return 1;
    }
    return 0;
}

//atcoder
#include <atcoder/all>
using namespace atcoder;
using mint1 = modint1000000007;
using mint2 = modint998244353;

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

    ll N, M;
    cin >> N >> M;
    vector<ll> A(N), B(M), C(N);
    rep(i, 0, N) {
        cin >> A.at(i);
    }
    sort(A.begin(), A.end());
    rep(i, 0, M) {
        cin >> B.at(i);
        B.at(i)=100-B.at(i);
    }
    sort(B.begin(), B.end());
    rep(i, 0, min(N, M)) {
        C.at(i)=B.at(i);
    }
    rep(i, min(N, M), N) {
        C.at(i)=100;
    }
    vector<ll> ans=convolution_ll(A, C);
    rep(i, 0, N) {
        cout << ans.at(i)/100 << endl;
    }
}
0