結果

問題 No.1621 Sequence Inversions
ユーザー convexineqconvexineq
提出日時 2021-07-23 01:49:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 3,000 ms
コード長 832 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 297,664 KB
最終ジャッジ日時 2024-07-17 23:07:11
合計ジャッジ時間 14,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 378 ms
281,648 KB
testcase_01 AC 384 ms
281,728 KB
testcase_02 AC 404 ms
297,344 KB
testcase_03 AC 383 ms
281,600 KB
testcase_04 AC 388 ms
281,856 KB
testcase_05 AC 386 ms
281,472 KB
testcase_06 AC 386 ms
281,472 KB
testcase_07 AC 375 ms
281,708 KB
testcase_08 AC 420 ms
297,416 KB
testcase_09 AC 396 ms
297,184 KB
testcase_10 AC 408 ms
296,996 KB
testcase_11 AC 434 ms
297,344 KB
testcase_12 AC 457 ms
297,192 KB
testcase_13 AC 454 ms
297,436 KB
testcase_14 AC 470 ms
297,344 KB
testcase_15 AC 473 ms
297,088 KB
testcase_16 AC 457 ms
297,472 KB
testcase_17 AC 470 ms
297,440 KB
testcase_18 AC 455 ms
297,472 KB
testcase_19 AC 404 ms
297,472 KB
testcase_20 AC 413 ms
297,664 KB
testcase_21 AC 473 ms
297,472 KB
testcase_22 AC 468 ms
297,344 KB
testcase_23 AC 471 ms
297,596 KB
testcase_24 AC 384 ms
281,836 KB
testcase_25 AC 386 ms
281,600 KB
testcase_26 AC 389 ms
281,644 KB
testcase_27 AC 385 ms
281,788 KB
testcase_28 AC 380 ms
281,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def polymul(f,g):
    lf = len(f)
    lg = len(g)
    res = [0]*(lf+lg-1)
    for i in range(lf):
        for j in range(lg):
            res[i+j] += f[i]*g[j]
            res[i+j] %= MOD
    return res

def add(r,s):
    if len(r) < len(s):
        r += [0]*(len(s)-len(r))
    for i,si in enumerate(s):
        r[i] += s[i]
        r[i] %= MOD

# dp[i][j] = i 個の隙間に j 個を 
N = 101
MOD = 998244353
dp = [[None]*N for _ in range(N)]
dp[0] = [[1]] + [[0]]*N
for i in range(1,N):
    dp[i][0] = [1]
    for j in range(1,N):
        r = [0]*(i-1) + dp[i][j-1]
        add(r, dp[i-1][j])
        dp[i][j] = r

from itertools import groupby
n,K,*a = map(int,open(0).read().split())
r = [1]
t = 0
for k,v in groupby(sorted(a)):
    c = len(list(v))
    r = polymul(r,dp[t+1][c])
    t += c
print(0 if K >= len(r) else r[K])

0