結果

問題 No.1392 Don't be together
ユーザー merom686merom686
提出日時 2021-02-12 23:43:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,099 bytes
コンパイル時間 956 ms
コンパイル使用メモリ 91,064 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-27 07:27:45
合計ジャッジ時間 16,421 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 368 ms
4,376 KB
testcase_07 AC 1,045 ms
4,380 KB
testcase_08 WA -
testcase_09 AC 982 ms
4,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;

constexpr int P = 998244353;

ll powmod(ll n, ll k) {
    ll r = 1, t = n % P;
    for (; k != 0; k /= 2) {
        if (k & 1) r = r * t % P;
        t = t * t % P;
    }
    return r;
}
ll modinv(ll n) {
    return powmod(n, P - 2);
}

vector<int> f0, f1;
void init(int n) {
    f0.resize(n + 1);
    f0[0] = 1;
    for (int i = 1; i <= n; i++) {
        f0[i] = (ll)f0[i - 1] * i % P;
    }
    f1.resize(n + 1);
    f1[n] = modinv(f0[n]);
    for (int i = n; i > 0; i--) {
        f1[i - 1] = (ll)f1[i] * i % P;
    }
}
ll fact(int k) {
    return f0[k];
}
ll comb(int n, int k) {
    if (n < k || k < 0) return 0;
    return (ll)f0[n] * f1[k] % P * f1[n - k] % P;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int n, m;
    cin >> n >> m;

    vector<int> p(n);
    for (int i = 0; i < n; i++) {
        cin >> p[i];
        p[i]--;
    }

    vector<int> q(n, 0), u;
    for (int i = 0; i < n; i++) {
        if (q[i]) continue;
        int k = 1;
        q[i] = 1;
        for (int j = p[i]; j != i; j = p[j]) {
            k++;
            q[j] = 1;
        }
        u.push_back(k);
    }

    init(max(m, n));

    auto f = [&](int n) {
        ll r = 0;
        for (int i = 1; i <= m; i++) {
            r += powmod(i, n) * comb(m, i) % P * ((m - i) % 2 == 0 ? 1 : -1);
        }
        r %= P;
        if (r < 0) r += P;

        r = r * f1[m] % P;

        return r;
    };

    vector<int> dp(n, 0);
    dp[0] = 1;
    for (int k : u) {
        for (int i = n; --i >= 0;) {
            ll t = 0;
            for (int j = 0; j < k && j <= i; j++) {
                t += (ll)dp[i - j] * (j == k - 1 ? 1 : comb(k, j)) % P;
            }
            dp[i] = t % P;
        }
    }

    ll r = 0;
    for (int i = (int)u.size(); i <= n; i++) {
        r += f(i) * dp[n - i] % P * ((n - i) % 2 == 0 ? 1 : -1);
    }
    r %= P;
    if (r < 0) r += P;

    cout << r << endl;

    return 0;
}
0