結果

問題 No.2964 Obstruction Bingo
ユーザー kmjpkmjp
提出日時 2024-11-16 22:02:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 581 ms / 2,468 ms
コード長 1,741 bytes
コンパイル時間 2,040 ms
コンパイル使用メモリ 205,412 KB
実行使用メモリ 500,736 KB
最終ジャッジ日時 2024-11-16 22:02:19
合計ジャッジ時間 17,329 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 5 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 208 ms
170,368 KB
testcase_06 AC 245 ms
216,192 KB
testcase_07 AC 53 ms
50,816 KB
testcase_08 AC 243 ms
218,112 KB
testcase_09 AC 222 ms
194,688 KB
testcase_10 AC 341 ms
296,576 KB
testcase_11 AC 78 ms
69,760 KB
testcase_12 AC 310 ms
272,128 KB
testcase_13 AC 213 ms
190,848 KB
testcase_14 AC 312 ms
271,360 KB
testcase_15 AC 85 ms
84,224 KB
testcase_16 AC 92 ms
86,784 KB
testcase_17 AC 66 ms
64,128 KB
testcase_18 AC 151 ms
138,240 KB
testcase_19 AC 74 ms
70,272 KB
testcase_20 AC 265 ms
233,472 KB
testcase_21 AC 260 ms
213,376 KB
testcase_22 AC 44 ms
41,472 KB
testcase_23 AC 21 ms
21,504 KB
testcase_24 AC 29 ms
27,520 KB
testcase_25 AC 464 ms
337,536 KB
testcase_26 AC 422 ms
344,576 KB
testcase_27 AC 427 ms
341,504 KB
testcase_28 AC 404 ms
340,864 KB
testcase_29 AC 417 ms
336,256 KB
testcase_30 AC 401 ms
337,920 KB
testcase_31 AC 387 ms
331,392 KB
testcase_32 AC 418 ms
339,328 KB
testcase_33 AC 394 ms
339,456 KB
testcase_34 AC 392 ms
341,760 KB
testcase_35 AC 414 ms
335,104 KB
testcase_36 AC 395 ms
339,456 KB
testcase_37 AC 412 ms
348,288 KB
testcase_38 AC 420 ms
340,736 KB
testcase_39 AC 400 ms
341,248 KB
testcase_40 AC 400 ms
340,736 KB
testcase_41 AC 431 ms
338,176 KB
testcase_42 AC 403 ms
339,968 KB
testcase_43 AC 410 ms
343,808 KB
testcase_44 AC 445 ms
347,776 KB
testcase_45 AC 445 ms
364,544 KB
testcase_46 AC 40 ms
5,504 KB
testcase_47 AC 581 ms
500,736 KB
testcase_48 AC 43 ms
7,296 KB
testcase_49 AC 392 ms
330,624 KB
testcase_50 AC 459 ms
360,576 KB
testcase_51 AC 480 ms
382,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int L,K;
string S,T;
ll A[26];

ll dp[505][505][505];
const ll mo=998244353;

ll modpow(ll a, ll n = mo-2) {
	ll r=1;a%=mo;
	while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1;
	return r;
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>L>>K;
	cin>>S>>T;
	while(S.size()<K) S=S+S,T=T+T;
	x=0;
	FOR(i,26) {
		cin>>A[i];
		x+=A[i];
	}
	FOR(i,26) A[i]=A[i]*modpow(x)%mo;
	
	FORR(s,S) s-='a';
	FORR(s,T) s-='a';
	ll ra=0,rb=0;
	dp[0][0][0]=1;
	FOR(i,K) {
		FOR(x,i+1) FOR(y,i+1) if(dp[i][x][y]) {
			ll v=dp[i][x][y];
			if(S[x]==T[y]) {
				(dp[i+1][x+1][y+1]+=v*A[S[x]])%=mo;
				(dp[i+1][x][y]+=v*(1+mo-A[S[x]]))%=mo;
			}
			else {
				if(x+1>=y+L) {
					(ra+=v*A[S[x]])%=mo;
				}
				else {
					(dp[i+1][x+1][y]+=v*A[S[x]])%=mo;
				}
				if(y+1>=x+L) {
					(rb+=v*A[T[y]])%=mo;
				}
				else {
					(dp[i+1][x][y+1]+=v*A[T[y]])%=mo;
				}
				(dp[i+1][x][y]+=v*(1+2*mo-A[S[x]]-A[T[y]]))%=mo;
			}
		}
	}
	cout<<ra<<" "<<rb<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0