結果

問題 No.2770 Coupon Optimization
ユーザー kotatsugamekotatsugame
提出日時 2024-05-31 21:57:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 255 ms / 3,000 ms
コード長 555 bytes
コンパイル時間 1,936 ms
コンパイル使用メモリ 106,836 KB
実行使用メモリ 24,516 KB
最終ジャッジ日時 2024-05-31 21:57:40
合計ジャッジ時間 7,051 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 62 ms
11,880 KB
testcase_04 AC 236 ms
24,408 KB
testcase_05 AC 33 ms
11,928 KB
testcase_06 AC 229 ms
24,516 KB
testcase_07 AC 226 ms
24,392 KB
testcase_08 AC 250 ms
24,372 KB
testcase_09 AC 108 ms
12,044 KB
testcase_10 AC 116 ms
12,088 KB
testcase_11 AC 60 ms
7,052 KB
testcase_12 AC 207 ms
17,044 KB
testcase_13 AC 123 ms
13,544 KB
testcase_14 AC 251 ms
24,344 KB
testcase_15 AC 255 ms
24,496 KB
testcase_16 AC 248 ms
24,284 KB
testcase_17 AC 251 ms
24,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<cassert>
#include<atcoder/convolution>
using namespace std;
int N,M;
int A[2<<17],B[2<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>M;
	for(int i=0;i<N;i++)
	{
		cin>>A[i];
		A[i]/=100;
	}
	for(int i=0;i<M;i++)cin>>B[i];
	sort(A,A+N);
	sort(B,B+M);
	reverse(B,B+M);
	vector<long long>C=atcoder::convolution_ll(vector<long long>(A,A+N),vector<long long>(B,B+M));
	long long base=0;
	for(int k=1;k<=N;k++)
	{
		base+=A[k-1]*100;
		cout<<base-C[k-1]<<"\n";
	}
}
0