結果

問題 No.2378 Cards and Subsequences
ユーザー kotatsugamekotatsugame
提出日時 2023-07-07 22:02:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 929 bytes
コンパイル時間 889 ms
コンパイル使用メモリ 73,216 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-07-21 18:04:22
合計ジャッジ時間 9,626 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 15 ms
5,376 KB
testcase_11 AC 19 ms
5,504 KB
testcase_12 AC 24 ms
6,016 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 250 ms
18,944 KB
testcase_15 AC 248 ms
18,944 KB
testcase_16 AC 251 ms
18,944 KB
testcase_17 AC 242 ms
18,944 KB
testcase_18 AC 264 ms
18,816 KB
testcase_19 AC 251 ms
18,816 KB
testcase_20 AC 250 ms
18,944 KB
testcase_21 AC 251 ms
18,944 KB
testcase_22 AC 252 ms
18,944 KB
testcase_23 AC 252 ms
18,944 KB
testcase_24 AC 184 ms
18,944 KB
testcase_25 AC 182 ms
18,816 KB
testcase_26 AC 182 ms
18,816 KB
testcase_27 AC 182 ms
18,944 KB
testcase_28 AC 183 ms
18,944 KB
testcase_29 AC 397 ms
18,944 KB
testcase_30 AC 394 ms
18,944 KB
testcase_31 AC 403 ms
18,816 KB
testcase_32 AC 389 ms
18,944 KB
testcase_33 AC 389 ms
18,944 KB
testcase_34 AC 392 ms
18,816 KB
testcase_35 AC 24 ms
18,944 KB
testcase_36 AC 210 ms
18,944 KB
testcase_37 AC 212 ms
18,816 KB
testcase_38 AC 206 ms
18,944 KB
testcase_39 AC 204 ms
18,944 KB
testcase_40 AC 11 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
#include<atcoder/modint>
#include<atcoder/fenwicktree>
using namespace std;
using mint=atcoder::modint998244353;
int N,M,K;
int S[2000],A[2000],B[2000];
atcoder::fenwick_tree<mint>dp[2001];
int prv[2000];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>M>>K;
	for(int i=0;i<N;i++)cin>>S[i],S[i]--;
	for(int i=0;i<M;i++)cin>>A[i];
	for(int i=0;i<M;i++)cin>>B[i];
	for(int i=0;i<=K;i++)
	{
		dp[i]=atcoder::fenwick_tree<mint>(N);
	}
	for(int i=0;i<M;i++)
	{
		prv[i]=-1;
	}
	for(int i=0;i<N;i++)
	{
		int a=A[S[i]],b=B[S[i]];
		for(int j=0;j+a<=K||j+b<=K;j++)
		{
			mint now=0;
			if(prv[S[i]]==-1)
			{
				now=j==0;
				now+=dp[j].sum(0,i);
			}
			else
			{
				now=dp[j].sum(prv[S[i]],i);
			}
			if(j+a<=K)
			{
				dp[j+a].add(i,now);
			}
			if(j+b<=K)
			{
				dp[j+b].add(i,now);
			}
		}
		prv[S[i]]=i;
	}
	cout<<dp[K].sum(0,N).val()<<endl;
}
0