結果

問題 No.2833 Count Taiko Results
ユーザー 沙耶花沙耶花
提出日時 2024-08-02 22:38:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 3,979 ms
コンパイル使用メモリ 265,968 KB
実行使用メモリ 8,808 KB
最終ジャッジ日時 2024-08-02 22:39:07
合計ジャッジ時間 9,367 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 153 ms
7,936 KB
testcase_35 AC 100 ms
6,944 KB
testcase_36 AC 121 ms
7,384 KB
testcase_37 AC 175 ms
8,520 KB
testcase_38 AC 82 ms
6,940 KB
testcase_39 AC 126 ms
7,712 KB
testcase_40 AC 146 ms
7,904 KB
testcase_41 AC 177 ms
8,292 KB
testcase_42 AC 171 ms
8,140 KB
testcase_43 AC 159 ms
8,100 KB
testcase_44 AC 172 ms
8,784 KB
testcase_45 AC 136 ms
7,720 KB
testcase_46 AC 113 ms
6,940 KB
testcase_47 AC 133 ms
7,240 KB
testcase_48 AC 101 ms
6,940 KB
testcase_49 AC 186 ms
8,680 KB
testcase_50 AC 192 ms
8,808 KB
testcase_51 AC 171 ms
8,684 KB
testcase_52 AC 155 ms
8,676 KB
testcase_53 AC 175 ms
8,680 KB
testcase_54 AC 2 ms
6,944 KB
testcase_55 AC 143 ms
8,684 KB
testcase_56 AC 144 ms
8,684 KB
testcase_57 AC 145 ms
8,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001

mint sol(int N,int K,vector<mint> a,vector<mint> b){
	if(K==0){
		mint r = 1;
		rep(i,b.size())r *= b[i];
		return r;
	}
	vector<mint> dp(N+2,0);
	dp[0] = 1;
	b.push_back(1);
	a.push_back(0);
	N++;
	mint sum = dp[0];
	mint mul = 1;
	rep(i,N){
		dp[i+1] = sum * b[i];
		if(i-K>=0){
			sum -= dp[i-K] * mul;
			mul /= a[i-K];
		}
		sum *= a[i];
		sum += dp[i+1];
		mul *= a[i];
	}
	return dp.back();
}
int main(){
	int N,K;
	cin>>N>>K;
	vector<mint> a(N),b(N);
	rep(i,N){
		int t;
		cin>>t;
		a[i] = t;
	}
	rep(i,N){
		int t;
		cin>>t;
		b[i] = t;		
	}
	
	mint ans = sol(N,K,a,b);
	ans -= sol(N,K-1,a,b);
	cout<<ans.val()<<endl;
    return 0;
}
0