結果
問題 | No.1670 Many Gacha |
ユーザー | chineristAC |
提出日時 | 2021-03-04 03:53:59 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,783 bytes |
コンパイル時間 | 443 ms |
コンパイル使用メモリ | 82,564 KB |
実行使用メモリ | 849,744 KB |
最終ジャッジ日時 | 2024-12-15 08:42:07 |
合計ジャッジ時間 | 45,888 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
63,592 KB |
testcase_01 | AC | 52 ms
63,352 KB |
testcase_02 | AC | 410 ms
91,268 KB |
testcase_03 | AC | 75 ms
74,856 KB |
testcase_04 | AC | 53 ms
63,464 KB |
testcase_05 | AC | 87 ms
77,968 KB |
testcase_06 | AC | 54 ms
64,544 KB |
testcase_07 | AC | 66 ms
71,116 KB |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | MLE | - |
testcase_34 | AC | 58 ms
62,528 KB |
testcase_35 | RE | - |
testcase_36 | MLE | - |
ソースコード
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 = 2*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 import sys,random,bisect from collections import deque,defaultdict from heapq import heapify,heappop,heappush from itertools import permutations from math import log,gcd input = lambda :sys.stdin.readline().rstrip() mi = lambda :map(int,input().split()) li = lambda :list(mi()) def solve(N,M,A): A = [0] + A dp = [[[0 for j in range(A[m-1]*(m>0)+1)] for i in range(A[m]-A[m-1]*(m>0)+1)] for m in range(M+1)] for m in range(1,M+1): if m!=1: for j in range(A[m-1]+1): inv = g2[A[m-1]] * g1[A[m-1]-j] * g1[j] % mod for k in range(A[m-1]-A[m-2]+1): tmp = cmb(A[m-1]-A[m-2],k,mod) * cmb(A[m-2],j-k,mod) if not tmp: continue tmp *= inv * dp[m-1][k][j-k] tmp %= mod dp[m][0][j] += tmp dp[m][0][j] %= mod for i in range(1,A[m]-A[m-1]+1): for j in range(A[m-1]+1): dp[m][i][j] = A[m] + i * dp[m][i-1][j] + j * dp[m][i][j-1] dp[m][i][j] %= mod dp[m][i][j] *= inverse[i+j] dp[m][i][j] %= mod return dp[M][A[M]-A[M-1]][A[M-1]] N,M = mi() A = li() print(solve(N,M,A))