結果

問題 No.1392 Don't be together
ユーザー convexineqconvexineq
提出日時 2021-02-13 14:38:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,752 KB
最終ジャッジ日時 2024-07-20 17:26:54
合計ジャッジ時間 7,054 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 37 ms
51,872 KB
testcase_06 AC 195 ms
76,876 KB
testcase_07 AC 346 ms
77,952 KB
testcase_08 AC 315 ms
77,400 KB
testcase_09 AC 360 ms
78,752 KB
testcase_10 AC 242 ms
76,600 KB
testcase_11 AC 334 ms
77,748 KB
testcase_12 AC 229 ms
76,588 KB
testcase_13 AC 297 ms
77,040 KB
testcase_14 AC 314 ms
77,532 KB
testcase_15 AC 236 ms
76,620 KB
testcase_16 AC 331 ms
77,680 KB
testcase_17 AC 245 ms
76,672 KB
testcase_18 AC 310 ms
77,568 KB
testcase_19 AC 279 ms
77,212 KB
testcase_20 AC 163 ms
76,488 KB
testcase_21 AC 104 ms
76,288 KB
testcase_22 AC 218 ms
76,672 KB
testcase_23 AC 171 ms
76,452 KB
testcase_24 AC 128 ms
76,672 KB
testcase_25 AC 179 ms
76,288 KB
testcase_26 AC 97 ms
76,012 KB
testcase_27 AC 111 ms
76,544 KB
testcase_28 AC 198 ms
76,564 KB
testcase_29 AC 132 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n,m = map(int,input().split())
*p, = map(int,input().split())
for i in range(n):
    p[i] -= 1

res = []
for i in range(n):
    if p[i] == -1: continue
    c = 0
    while p[i] != -1:
        ni = p[i]
        p[i] = -1
        i = ni
        c += 1
    res.append(c)

dp = [0]*(m+1)
dp[0] = 1
for c in res:
    ndp = [0]*(m+1)
    for i in range(m+1):
        ndp[i] += i*dp[i]
        ndp[i] %= MOD
        if i < m: ndp[i+1] += dp[i]

    dp = ndp
    dp2 = [0]*(m+1)
    for _ in range(c-1):
        ndp = [0]*(m+1)
        ndp2 = [0]*(m+1)
        for i in range(1,m+1):
            ndp2[i] += dp[i]*(i-1)
            ndp2[i] += dp2[i]*(i-2)
            ndp2[i] %= MOD
            ndp[i] += dp2[i]
            ndp[i] %= MOD
            if i < m:
                ndp2[i+1] += dp[i] + dp2[i]
        dp = ndp
        dp2 = ndp2
    dp = dp2

print(dp[-1])
0