結果
問題 | No.1670 Many Gacha |
ユーザー | chineristAC |
提出日時 | 2021-02-23 22:45:46 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,819 bytes |
コンパイル時間 | 233 ms |
コンパイル使用メモリ | 82,244 KB |
実行使用メモリ | 114,724 KB |
最終ジャッジ日時 | 2024-05-09 00:29:21 |
合計ジャッジ時間 | 5,300 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
64,512 KB |
testcase_01 | AC | 44 ms
59,176 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
def cmb(n, r, mod):#コンビネーションの高速計算 if ( r<0 or r>n ): return 0 r = min(r, n-r) return (g1[n] * g2[r] %mod) * g2[n-r] % mod mod = 998244353#出力の制限 N = 5*10**3 g1 = [1]*(N+1) # 元テーブル g2 = [1]*(N+1) #逆元テーブル inverse = [1]*(N+1) #逆元テーブル計算用テーブル for i in range( 2, N + 1 ): g1[i]=( ( g1[i-1] * i ) % mod ) inverse[i]=( ( -inverse[mod % i] * (mod//i) ) % mod ) g2[i]=( (g2[i-1] * inverse[i]) % mod ) inverse[0]=0 def solve(N,M,A): N,M = M,N A = [0] + A B = [0 for i in range(M+1)] for i in range(N+1): for j in range(A[i]+1,M+1): B[j] = i dp = [[0 for j in range(M+2)] for i in range(M+1)] for i in range(1,M+1): n = B[i] for j in range(A[n],-1,-1): rest = i-j if i!=A[n]+1: dp[i][j] = A[n+1] + (i-A[n]) * dp[i-1][j] + (A[n]-j) * dp[i][j+1] dp[i][j] %= mod dp[i][j] *= inverse[rest] dp[i][j] %= mod else: if n==0: dp[i][j] = A[n+1] else: dp[i][j] = A[n+1] + (A[n]-j) * dp[i][j+1] dp[i][j] %= mod for k in range(min(j+1,A[n]-A[n-1]+1)): tmp = dp[i-1-k][j-k] * cmb(A[n]-A[n-1],k,mod) % mod tmp = tmp * cmb(A[n-1],j-k,mod) % mod tmp = tmp * ((g2[A[n]] * g1[A[n]-j] % mod) * g1[j] % mod) % mod dp[i][j] += tmp dp[i][j] %= mod dp[i][j] *= inverse[rest] dp[i][j] %= mod return dp[M][0] N,M = map(int,input().split()) A = list(map(int,input().split())) print(solve(N,M,A))