結果

問題 No.2378 Cards and Subsequences
ユーザー kotatsugamekotatsugame
提出日時 2023-07-07 22:10:55
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 780 bytes
コンパイル時間 768 ms
コンパイル使用メモリ 70,936 KB
実行使用メモリ 19,216 KB
最終ジャッジ日時 2024-07-21 18:14:47
合計ジャッジ時間 3,646 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
19,072 KB
testcase_01 AC 6 ms
19,072 KB
testcase_02 AC 6 ms
19,156 KB
testcase_03 AC 6 ms
19,200 KB
testcase_04 AC 7 ms
19,072 KB
testcase_05 AC 7 ms
19,072 KB
testcase_06 AC 7 ms
19,072 KB
testcase_07 AC 6 ms
19,072 KB
testcase_08 AC 8 ms
19,072 KB
testcase_09 AC 10 ms
19,072 KB
testcase_10 AC 11 ms
19,000 KB
testcase_11 AC 11 ms
19,072 KB
testcase_12 AC 12 ms
19,072 KB
testcase_13 AC 8 ms
19,216 KB
testcase_14 AC 67 ms
19,216 KB
testcase_15 AC 63 ms
19,032 KB
testcase_16 AC 64 ms
19,200 KB
testcase_17 AC 66 ms
19,096 KB
testcase_18 AC 58 ms
19,072 KB
testcase_19 AC 77 ms
19,072 KB
testcase_20 AC 66 ms
19,104 KB
testcase_21 AC 71 ms
19,148 KB
testcase_22 AC 68 ms
19,072 KB
testcase_23 AC 76 ms
19,072 KB
testcase_24 AC 53 ms
19,072 KB
testcase_25 AC 61 ms
19,092 KB
testcase_26 AC 54 ms
19,072 KB
testcase_27 AC 55 ms
18,984 KB
testcase_28 AC 54 ms
18,980 KB
testcase_29 AC 82 ms
19,088 KB
testcase_30 AC 78 ms
19,072 KB
testcase_31 AC 77 ms
19,200 KB
testcase_32 AC 96 ms
18,944 KB
testcase_33 AC 94 ms
19,072 KB
testcase_34 AC 63 ms
19,100 KB
testcase_35 AC 31 ms
18,944 KB
testcase_36 AC 56 ms
18,944 KB
testcase_37 AC 59 ms
19,084 KB
testcase_38 AC 53 ms
19,068 KB
testcase_39 AC 56 ms
19,196 KB
testcase_40 AC 9 ms
19,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N,M,K;
int S[2000],A[2000],B[2000];
mint dp[2001][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<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=dp[j][i];
			if(prv[S[i]]==-1)
			{
				if(j==0)now++;
			}
			else now-=dp[j][prv[S[i]]];
			if(j+a<=K)dp[j+a][i+1]+=now;
			if(j+b<=K)dp[j+b][i+1]+=now;
		}
		for(int j=0;j<=K;j++)dp[j][i+1]+=dp[j][i];
		prv[S[i]]=i;
	}
	cout<<dp[K][N].val()<<endl;
}
0