結果

問題 No.2330 Eat Slime
ユーザー kotatsugamekotatsugame
提出日時 2023-05-28 14:18:52
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 361 ms / 4,000 ms
コード長 767 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 111,712 KB
実行使用メモリ 14,524 KB
最終ジャッジ日時 2024-12-27 00:30:06
合計ジャッジ時間 11,475 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 299 ms
12,432 KB
testcase_08 AC 124 ms
8,516 KB
testcase_09 AC 314 ms
12,360 KB
testcase_10 AC 69 ms
5,248 KB
testcase_11 AC 87 ms
5,248 KB
testcase_12 AC 304 ms
12,360 KB
testcase_13 AC 271 ms
12,192 KB
testcase_14 AC 147 ms
6,492 KB
testcase_15 AC 199 ms
9,684 KB
testcase_16 AC 273 ms
11,700 KB
testcase_17 AC 353 ms
14,388 KB
testcase_18 AC 355 ms
14,264 KB
testcase_19 AC 355 ms
14,392 KB
testcase_20 AC 357 ms
14,524 KB
testcase_21 AC 358 ms
14,268 KB
testcase_22 AC 355 ms
14,392 KB
testcase_23 AC 354 ms
14,360 KB
testcase_24 AC 355 ms
14,264 KB
testcase_25 AC 356 ms
14,392 KB
testcase_26 AC 355 ms
14,392 KB
testcase_27 AC 357 ms
14,292 KB
testcase_28 AC 361 ms
14,260 KB
testcase_29 AC 357 ms
14,392 KB
testcase_30 AC 357 ms
14,392 KB
testcase_31 AC 357 ms
14,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<atcoder/modint>
#include<atcoder/convolution>
using namespace std;
using mint=atcoder::modint998244353;
int N,M,X;
int C[2<<17];
int A[2<<17],B[2<<17],Y[2<<17];
int ans[2<<17];
int main()
{
	cin>>N>>M>>X;
	for(int i=0;i<N;i++)cin>>C[i];
	for(int i=0;i<M;i++)cin>>A[i]>>B[i]>>Y[i];
	for(int col=1;col<=5;col++)
	{
		vector<mint>idx(N,mint::raw(0));
		for(int i=0;i<N;i++)if(C[i]==col)idx[i]=mint::raw(1);
		vector<mint>coef(N,mint::raw(0));
		for(int i=0;i<M;i++)if(B[i]==col)
		{
			coef[N-A[i]]+=mint::raw(Y[i]);
		}
		vector<mint>t=atcoder::convolution(idx,coef);
		for(int i=N-1;i<2*N-1;i++)ans[i-(N-1)]+=t[i].val();
	}
	int ret=0;
	for(int i=0;i<=N;i++)ret=max(ret,ans[i]+i*X);
	cout<<ret<<endl;
}
0