結果

問題 No.1621 Sequence Inversions
ユーザー だれだれ
提出日時 2021-07-06 07:49:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,729 ms / 3,000 ms
コード長 1,191 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 304,724 KB
最終ジャッジ日時 2024-07-17 15:48:49
合計ジャッジ時間 28,445 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 350 ms
297,712 KB
testcase_01 AC 339 ms
297,088 KB
testcase_02 AC 372 ms
298,624 KB
testcase_03 AC 336 ms
297,348 KB
testcase_04 AC 341 ms
297,504 KB
testcase_05 AC 339 ms
297,248 KB
testcase_06 AC 389 ms
298,684 KB
testcase_07 AC 546 ms
297,984 KB
testcase_08 AC 2,494 ms
299,584 KB
testcase_09 AC 2,575 ms
304,724 KB
testcase_10 AC 2,561 ms
304,512 KB
testcase_11 AC 2,497 ms
299,840 KB
testcase_12 AC 2,729 ms
299,392 KB
testcase_13 AC 895 ms
299,764 KB
testcase_14 AC 903 ms
300,980 KB
testcase_15 AC 857 ms
302,080 KB
testcase_16 AC 755 ms
301,568 KB
testcase_17 AC 837 ms
302,208 KB
testcase_18 AC 757 ms
301,452 KB
testcase_19 AC 395 ms
298,880 KB
testcase_20 AC 554 ms
300,800 KB
testcase_21 AC 852 ms
302,024 KB
testcase_22 AC 849 ms
302,204 KB
testcase_23 AC 850 ms
302,196 KB
testcase_24 AC 369 ms
298,088 KB
testcase_25 AC 367 ms
297,984 KB
testcase_26 AC 353 ms
297,216 KB
testcase_27 AC 365 ms
297,600 KB
testcase_28 AC 364 ms
297,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

memo = [[[-1] * 101 for _ in range(2501)] for _ in range(101)]

def f(n, m, k) -> int:
    if memo[n][m][k] != -1:
        return memo[n][m][k]
    if n == 0:
        if m == 0:
            memo[n][m][k] = 1
            return 1
        else:
            memo[n][m][k] = 0
            return 0
    if n * k < m:
        memo[n][m][k] = 0
        return 0
    memo[n][m][k] = f(n - 1, m, k)
    if m - n >= 0 and k > 0:
        memo[n][m][k] += f(n, m - n, k - 1)
        if memo[n][m][k] >= mod:
            memo[n][m][k] -= mod
    return memo[n][m][k]

t, k = map(int, input().split())
a = list(map(int, input().split()))
if k > t * (t - 1) // 2:
    print(0)
    exit()
n = 0
a.sort()
cnt = [0] * 100
for i in range(t-1):
    cnt[n] += 1
    if a[i] != a[i + 1]:
        n += 1

cnt[n] += 1
n += 1

dp = [[0] * 5000 for _ in range(n + 1)]
dp[0][0] = 1

rui = 0

for i in range(1, n + 1):
    x = cnt[i - 1]
    for j in range(5000):
        for l in range(rui * x + 1):
            if j - l < 0:
                break
            dp[i][j] += f(x, l, rui) * dp[i - 1][j - l]
            if dp[i][j] >= mod:    
                dp[i][j] %= mod
    rui += x

print(dp[n][k])
0