結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 478 ms
22,952 KB
testcase_04 AC 491 ms
24,516 KB
testcase_05 AC 18 ms
6,816 KB
testcase_06 AC 498 ms
24,536 KB
testcase_07 AC 483 ms
24,392 KB
testcase_08 AC 508 ms
24,516 KB
testcase_09 AC 113 ms
7,652 KB
testcase_10 AC 242 ms
13,224 KB
testcase_11 AC 192 ms
11,120 KB
testcase_12 AC 280 ms
15,256 KB
testcase_13 AC 240 ms
13,240 KB
testcase_14 AC 515 ms
24,440 KB
testcase_15 AC 507 ms
24,464 KB
testcase_16 AC 509 ms
24,560 KB
testcase_17 AC 503 ms
24,396 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