結果

問題 No.1873 Bracket Swapping
ユーザー tailstails
提出日時 2022-03-20 23:01:24
言語 cLay
(20240714-1)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 566 bytes
コンパイル時間 5,579 ms
コンパイル使用メモリ 187,368 KB
実行使用メモリ 7,660 KB
最終ジャッジ日時 2024-10-07 13:29:31
合計ジャッジ時間 8,191 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 12 ms
6,820 KB
testcase_04 AC 6 ms
6,820 KB
testcase_05 AC 6 ms
6,820 KB
testcase_06 AC 50 ms
6,816 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 92 ms
6,820 KB
testcase_09 RE -
testcase_10 AC 76 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 42 ms
6,816 KB
testcase_13 AC 35 ms
6,816 KB
testcase_14 AC 97 ms
6,816 KB
testcase_15 AC 22 ms
6,820 KB
testcase_16 AC 3 ms
6,820 KB
testcase_17 AC 50 ms
6,816 KB
testcase_18 AC 3 ms
6,824 KB
testcase_19 AC 6 ms
6,820 KB
testcase_20 AC 82 ms
6,820 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 9 ms
7,652 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 109 ms
6,816 KB
testcase_26 AC 48 ms
6,820 KB
testcase_27 AC 70 ms
6,816 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353

string@s;
ll@k,n=s.size()/2;

Matrix<Mint> m(n+1,n+1);
rep(y,n+1){
	rep(x,n+1){
		m[y][x]=
			y==x-1 ? x*x:
			y==x ? n*(n*2-1)-(n-x)*(n-x)-x*x:
			y==x+1 ? (n-x)*(n-x):
			0;
	}
}
m**=k;

Mint d[102][101];
d[1][1]=1;
rep(i,1,n*2){
	if(s[i]=='('){
		rrep(j,1,n+2){
			rrep(k,i/2+1,min(n+1,i+2)){
				d[j][k]=d[j-1][k]+d[j][k-1];
			}
			d[j][i/2]=0;
		}
	}else{
		rrep(j,1,n+2){
			rrep(k,i/2+1,min(n+2,i+2)){
				d[j][k]+=d[j][k-1];
			}
			d[j][i/2]=0;
		}
	}
}

Comb<Mint>c;
Mint z=0;
rep(i,n+1){
	z+=m[i][0]/c.C(n,i)**2*d[i+1][n];
}
wt(z);
0