結果

問題 No.2770 Coupon Optimization
ユーザー FplusFplusFFplusFplusF
提出日時 2024-05-31 23:03:05
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 256 ms / 3,000 ms
コード長 925 bytes
コンパイル時間 3,996 ms
コンパイル使用メモリ 281,952 KB
実行使用メモリ 23,076 KB
最終ジャッジ日時 2024-05-31 23:03:16
合計ジャッジ時間 9,012 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 211 ms
22,892 KB
testcase_04 AC 227 ms
23,076 KB
testcase_05 AC 32 ms
11,088 KB
testcase_06 AC 221 ms
22,824 KB
testcase_07 AC 220 ms
23,032 KB
testcase_08 AC 245 ms
22,928 KB
testcase_09 AC 107 ms
11,540 KB
testcase_10 AC 115 ms
12,724 KB
testcase_11 AC 99 ms
10,992 KB
testcase_12 AC 201 ms
16,076 KB
testcase_13 AC 117 ms
12,788 KB
testcase_14 AC 239 ms
22,908 KB
testcase_15 AC 256 ms
22,708 KB
testcase_16 AC 241 ms
22,992 KB
testcase_17 AC 240 ms
22,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> inline bool chmin(T &a,T b){
    if(a>b){
        a=b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T &a,T b){
    if(a<b){
        a=b;
        return true;
    }
    return false;
}
#include<atcoder/convolution>
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n,m;
    cin >> n >> m;
    vector<ll> a(n),b(m);
    rep(i,n){
        cin >> a[i];
        a[i]/=100;
    }
    sort(all(a));
    rep(i,m){
        cin >> b[i];
        b[i]=100-b[i];
    }
    sort(all(b));
    while((ll)b.size()<n) b.push_back(100);
    vector<ll> ans=atcoder::convolution_ll(a,b);
    rep(i,n) cout << ans[i] << '\n';

}
0