結果

問題 No.2770 Coupon Optimization
ユーザー Nzt3Nzt3
提出日時 2024-06-01 17:36:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 247 ms / 3,000 ms
コード長 600 bytes
コンパイル時間 3,595 ms
コンパイル使用メモリ 238,040 KB
実行使用メモリ 23,004 KB
最終ジャッジ日時 2024-06-01 17:36:24
合計ジャッジ時間 10,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 223 ms
22,832 KB
testcase_04 AC 226 ms
23,004 KB
testcase_05 AC 32 ms
11,152 KB
testcase_06 AC 219 ms
22,824 KB
testcase_07 AC 216 ms
22,800 KB
testcase_08 AC 247 ms
22,824 KB
testcase_09 AC 106 ms
11,284 KB
testcase_10 AC 113 ms
12,472 KB
testcase_11 AC 100 ms
11,120 KB
testcase_12 AC 203 ms
16,060 KB
testcase_13 AC 118 ms
12,540 KB
testcase_14 AC 244 ms
22,844 KB
testcase_15 AC 241 ms
22,880 KB
testcase_16 AC 239 ms
22,952 KB
testcase_17 AC 246 ms
22,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/convolution>
using namespace std;
using ll=long long;
constexpr int MOD=998244353;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define replr(i,l,r) for(int i=(l);i<(int)(r);i++)

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,M;
  cin>>N>>M;
  vector A(N,0ll),B(M,0ll);
  for(ll &i:A)cin>>i,i/=100;
  for(ll &i:B)cin>>i;
  sort(A.begin(),A.end());
  for(ll &i:B)i=100-i;
  while(B.size()<N)B.push_back(100);
  M=B.size();
  sort(B.begin(),B.end());
  
  auto ans=atcoder::convolution_ll(A,B);
  rep(i,N){
    cout<<ans[i]<<'\n';
  }
}
0