結果

問題 No.2330 Eat Slime
ユーザー kotatsugamekotatsugame
提出日時 2023-05-28 14:18:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 341 ms / 4,000 ms
コード長 767 bytes
コンパイル時間 2,102 ms
コンパイル使用メモリ 112,812 KB
実行使用メモリ 15,484 KB
最終ジャッジ日時 2024-06-08 05:08:57
合計ジャッジ時間 10,966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,948 KB
testcase_03 AC 2 ms
7,504 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 270 ms
13,840 KB
testcase_08 AC 111 ms
10,496 KB
testcase_09 AC 289 ms
13,288 KB
testcase_10 AC 62 ms
6,944 KB
testcase_11 AC 76 ms
6,944 KB
testcase_12 AC 277 ms
14,208 KB
testcase_13 AC 247 ms
13,436 KB
testcase_14 AC 134 ms
7,036 KB
testcase_15 AC 183 ms
11,844 KB
testcase_16 AC 247 ms
13,228 KB
testcase_17 AC 323 ms
15,004 KB
testcase_18 AC 334 ms
14,872 KB
testcase_19 AC 320 ms
15,128 KB
testcase_20 AC 325 ms
15,356 KB
testcase_21 AC 323 ms
14,876 KB
testcase_22 AC 327 ms
14,868 KB
testcase_23 AC 341 ms
14,872 KB
testcase_24 AC 338 ms
14,868 KB
testcase_25 AC 328 ms
14,876 KB
testcase_26 AC 337 ms
15,356 KB
testcase_27 AC 339 ms
15,352 KB
testcase_28 AC 325 ms
15,420 KB
testcase_29 AC 327 ms
14,872 KB
testcase_30 AC 318 ms
15,104 KB
testcase_31 AC 330 ms
15,484 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