結果

問題 No.2503 Typical Path Counting Problem on a Grid
ユーザー 👑 p-adicp-adic
提出日時 2023-10-26 09:58:10
言語 cLay
(20240714-1)
結果
AC  
実行時間 1,951 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 4,837 ms
コンパイル使用メモリ 203,492 KB
実行使用メモリ 49,604 KB
最終ジャッジ日時 2024-09-25 12:18:43
合計ジャッジ時間 21,135 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,074 ms
44,480 KB
testcase_01 AC 1,185 ms
45,256 KB
testcase_02 AC 1,243 ms
47,684 KB
testcase_03 AC 1,113 ms
43,392 KB
testcase_04 AC 1,321 ms
47,436 KB
testcase_05 AC 1,264 ms
47,432 KB
testcase_06 AC 1,951 ms
47,308 KB
testcase_07 AC 1,939 ms
47,304 KB
testcase_08 AC 1,896 ms
49,604 KB
testcase_09 AC 1,324 ms
45,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
ll@T,@(N,M)[T],L=1d7+1,n[T],m;map<ll,Matrix<Mint>>t;rep(i,T)t[n[i]=min(N[i],M[i])];Mint A[L]{1},p;Matrix<Mint>X(2,2),Y(2,1),Z=X;Z[0][0]=Z[1][1]=1;X[1][0]=1;t[0]=Z;rep(i,1,L){A[i]=2i*A[i-1]+(i-1)*A[max(0,i-2)],X[0][0]+=2,X[0][1]++,Z=Z*X;if(t.count(i))t[i]=Z;}rep(i,T)m=n[i],X[0][0]=2m+1,X[0][1]=m,Y[0][0]=A[m],Y[1][0]=A[max(0,m-1)],Y=t[m]*X**(N[i]+M[i]-2m)*Y,wt(Y[0][0]);
0