結果

問題 No.1821 LEQ-GEQ Permutations
ユーザー nok0nok0
提出日時 2022-01-16 22:36:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,400 ms / 2,500 ms
コード長 1,249 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 274,856 KB
最終ジャッジ日時 2024-05-02 18:45:38
合計ジャッジ時間 15,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
66,944 KB
testcase_01 AC 55 ms
66,944 KB
testcase_02 AC 56 ms
66,944 KB
testcase_03 AC 55 ms
66,816 KB
testcase_04 AC 54 ms
66,816 KB
testcase_05 AC 54 ms
66,688 KB
testcase_06 AC 55 ms
66,688 KB
testcase_07 AC 107 ms
85,632 KB
testcase_08 AC 150 ms
91,904 KB
testcase_09 AC 1,012 ms
214,200 KB
testcase_10 AC 93 ms
79,360 KB
testcase_11 AC 172 ms
93,824 KB
testcase_12 AC 153 ms
92,416 KB
testcase_13 AC 251 ms
103,188 KB
testcase_14 AC 468 ms
136,912 KB
testcase_15 AC 896 ms
202,308 KB
testcase_16 AC 870 ms
196,048 KB
testcase_17 AC 451 ms
132,816 KB
testcase_18 AC 1,400 ms
274,856 KB
testcase_19 AC 1,387 ms
274,848 KB
testcase_20 AC 1,395 ms
274,800 KB
testcase_21 AC 1,384 ms
274,724 KB
testcase_22 AC 1,397 ms
274,540 KB
testcase_23 AC 887 ms
274,296 KB
testcase_24 AC 882 ms
274,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

table_len = 10 ** 5 + 10

fac = [1, 1]
for i in range(2, table_len):
    fac.append(fac[-1] * i % mod)

finv = [0] * table_len
finv[-1] = pow(fac[-1], mod - 2, mod)
for i in range(table_len - 1, 0, -1):
    finv[i - 1] = finv[i] * i % mod


def comb(n, k):
    if k < 0 or n < 0 or n - k < 0:
        return 0
    return fac[n] * finv[k] % mod * finv[n - k] % mod


n = int(input())
s = input()
c0 = s.count('0')
c1 = n - c0

dp = [[0] * (n + 1) for i in range(n + 1)]
dp[0][0] = 1
for i in range(n):
    for j in range(n + 1):
        if i + 2 <= n and j + 1 <= n:
            dp[i + 2][j + 1] = (dp[i + 2][j + 1] + dp[i][j] * (i + 1)) % mod
        if j + 1 <= n:
            dp[i + 1][j + 1] = (dp[i + 1][j + 1] + dp[i][j] * (i - j)) % mod
        dp[i + 1][j] = (dp[i + 1][j] + dp[i][j] * j) % mod

res = 0

for eq0 in range(c0 + 1):
    for eq1 in range(c1 + 1):
        pos_eq = comb(c0, eq0) * comb(c1, eq1) % mod * fac[eq0] % mod * fac[eq1] % mod
        num_eq = comb(c0 + c1, eq0) * comb(c0 + c1 - eq0, eq1) % mod
        pos_neq = dp[c0 - eq0 + c1 - eq1][c0 - eq0]
        pos_neq2 = fac[c0 - eq0] * fac[c1 - eq1] % mod
        res += pos_eq * num_eq % mod * pos_neq % mod * pos_neq2 % mod
        res %= mod

print(res)
0