結果

問題 No.2503 Typical Path Counting Problem on a Grid
ユーザー 👑 p-adicp-adic
提出日時 2023-10-26 09:59:37
言語 cLay
(20240714-1)
結果
AC  
実行時間 1,622 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 4,362 ms
コンパイル使用メモリ 202,788 KB
実行使用メモリ 46,920 KB
最終ジャッジ日時 2024-09-25 12:19:04
合計ジャッジ時間 19,678 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,161 ms
44,488 KB
testcase_01 AC 1,164 ms
45,248 KB
testcase_02 AC 1,589 ms
45,184 KB
testcase_03 AC 1,202 ms
45,256 KB
testcase_04 AC 1,622 ms
46,920 KB
testcase_05 AC 1,552 ms
45,056 KB
testcase_06 AC 1,307 ms
45,440 KB
testcase_07 AC 1,291 ms
46,920 KB
testcase_08 AC 1,247 ms
46,792 KB
testcase_09 AC 1,602 ms
45,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
ll@T,@(N,M)[T],L=1d7+1,n[T],m;unordered_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