結果

問題 No.2964 Obstruction Bingo
ユーザー 沙耶花沙耶花
提出日時 2024-11-16 15:48:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 248 ms / 2,468 ms
コード長 1,122 bytes
コンパイル時間 4,392 ms
コンパイル使用メモリ 266,196 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-11-16 15:49:46
合計ジャッジ時間 13,406 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 79 ms
5,248 KB
testcase_06 AC 116 ms
5,248 KB
testcase_07 AC 16 ms
5,248 KB
testcase_08 AC 112 ms
5,248 KB
testcase_09 AC 82 ms
5,248 KB
testcase_10 AC 170 ms
5,760 KB
testcase_11 AC 31 ms
5,248 KB
testcase_12 AC 169 ms
5,248 KB
testcase_13 AC 88 ms
5,248 KB
testcase_14 AC 145 ms
5,504 KB
testcase_15 AC 25 ms
5,248 KB
testcase_16 AC 34 ms
5,248 KB
testcase_17 AC 23 ms
5,248 KB
testcase_18 AC 63 ms
5,248 KB
testcase_19 AC 28 ms
5,248 KB
testcase_20 AC 129 ms
5,248 KB
testcase_21 AC 124 ms
5,248 KB
testcase_22 AC 14 ms
5,248 KB
testcase_23 AC 6 ms
5,248 KB
testcase_24 AC 7 ms
5,248 KB
testcase_25 AC 231 ms
5,888 KB
testcase_26 AC 248 ms
6,016 KB
testcase_27 AC 231 ms
5,888 KB
testcase_28 AC 228 ms
5,888 KB
testcase_29 AC 229 ms
5,888 KB
testcase_30 AC 234 ms
6,016 KB
testcase_31 AC 239 ms
6,016 KB
testcase_32 AC 234 ms
5,888 KB
testcase_33 AC 235 ms
6,016 KB
testcase_34 AC 244 ms
5,888 KB
testcase_35 AC 229 ms
5,888 KB
testcase_36 AC 243 ms
5,888 KB
testcase_37 AC 239 ms
5,888 KB
testcase_38 AC 246 ms
5,888 KB
testcase_39 AC 228 ms
5,888 KB
testcase_40 AC 229 ms
5,888 KB
testcase_41 AC 231 ms
5,888 KB
testcase_42 AC 248 ms
5,888 KB
testcase_43 AC 238 ms
5,888 KB
testcase_44 AC 235 ms
5,888 KB
testcase_45 AC 133 ms
5,504 KB
testcase_46 AC 115 ms
5,760 KB
testcase_47 AC 123 ms
5,632 KB
testcase_48 AC 117 ms
5,632 KB
testcase_49 AC 162 ms
5,632 KB
testcase_50 AC 192 ms
5,888 KB
testcase_51 AC 237 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	int L,K;
	cin>>L>>K;
	string S,T;
	cin>>S>>T;
	vector<int> a(26);
	mint sum = 0;
	rep(i,26){
		cin>>a[i];
		sum += a[i];
	}
	vector<mint> p(26);
	rep(i,26){
		p[i] = a[i];
		p[i] /= sum;
	}
	
	vector dp(1,vector<mint>(1,1));
	mint x = 0,y = 0;
	rep(i,K){
		vector ndp(i+2,vector<mint>(i+2));
		rep(j,i+1){
			rep(k,i+1){
				if(dp[j][k]==0)continue;
				int cx = S[j%L] - 'a';
				int cy = T[k%L] - 'a';
				if(cx==cy){
					ndp[j+1][k+1] += dp[j][k] * p[cx];
					ndp[j][k] += dp[j][k] * (1-p[cx]);
				}
				else{
					ndp[j+1][k] += dp[j][k] * p[cx];
					ndp[j][k+1] += dp[j][k] * p[cy];
					ndp[j][k] += dp[j][k] * (1-p[cx]-p[cy]);
				}
			}
		}
		swap(dp,ndp);
		rep(j,i+2){
			rep(k,i+2){
				if(abs(j-k)==L){
					if(j<k)y += dp[j][k];
					else x += dp[j][k];
					dp[j][k] = 0;
				}
			}
		}
	}
	cout<<x.val()<<' '<<y.val()<<endl;
	return 0;
}
0