結果

問題 No.140 みんなで旅行
ユーザー maine_honzukimaine_honzuki
提出日時 2020-05-20 11:27:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 2,785 bytes
コンパイル時間 679 ms
コンパイル使用メモリ 66,812 KB
実行使用メモリ 16,472 KB
最終ジャッジ日時 2024-04-09 22:54:15
合計ジャッジ時間 2,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
16,232 KB
testcase_01 AC 14 ms
16,340 KB
testcase_02 AC 16 ms
16,348 KB
testcase_03 AC 14 ms
16,248 KB
testcase_04 AC 14 ms
16,216 KB
testcase_05 AC 13 ms
16,348 KB
testcase_06 AC 14 ms
16,304 KB
testcase_07 AC 14 ms
16,220 KB
testcase_08 AC 14 ms
16,344 KB
testcase_09 AC 14 ms
16,348 KB
testcase_10 AC 15 ms
16,216 KB
testcase_11 AC 143 ms
16,472 KB
testcase_12 AC 15 ms
16,216 KB
testcase_13 AC 14 ms
16,344 KB
testcase_14 AC 142 ms
16,344 KB
testcase_15 AC 145 ms
16,472 KB
testcase_16 AC 47 ms
16,348 KB
testcase_17 AC 25 ms
16,128 KB
testcase_18 AC 102 ms
16,344 KB
testcase_19 AC 116 ms
16,140 KB
testcase_20 AC 22 ms
16,472 KB
testcase_21 AC 14 ms
16,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <iostream>
using namespace std;
using ll = long long;
using ull = unsigned long long;
const int mod = 1e9 + 7;

template <uint MD>
struct ModInt {
    using M = ModInt;
    const static M G;
    uint v;
    ModInt(ll _v = 0) { set_v(_v % MD + MD); }
    M& set_v(uint _v) {
        v = (_v < MD) ? _v : _v - MD;
        return *this;
    }
    explicit operator bool() const { return v != 0; }
    M operator-() const { return M() - *this; }
    M operator+(const M& r) const { return M().set_v(v + r.v); }
    M operator-(const M& r) const { return M().set_v(v + MD - r.v); }
    M operator*(const M& r) const { return M().set_v(ull(v) * r.v % MD); }
    M operator/(const M& r) const { return *this * r.inv(); }
    M& operator+=(const M& r) { return *this = *this + r; }
    M& operator-=(const M& r) { return *this = *this - r; }
    M& operator*=(const M& r) { return *this = *this * r; }
    M& operator/=(const M& r) { return *this = *this / r; }
    bool operator==(const M& r) const { return v == r.v; }
    bool operator!=(const M& r) const { return !(v == r.v); }
    M pow(ll n) const {
        M x = *this, r = 1;
        while (n) {
            if (n & 1)
                r *= x;
            x *= x;
            n >>= 1;
        }
        return r;
    }
    M inv() const { return pow(MD - 2); }
    friend ostream& operator<<(ostream& os, const M& r) { return os << r.v; }
    friend istream& operator>>(istream& is, M& r) { return is >> r.v; }
};
using Mint = ModInt<mod>;

Mint memo_stirling[1000][1000];
bool seen_stirling[1000][1000];
Mint stirlign(int n, int k) {
    if (n == 0 && k == 0) return Mint{1};
    if (seen_stirling[n][k])
        return memo_stirling[n][k];
    Mint ret = 0;
    if (n >= 1) {
        ret += stirlign(n - 1, k) * k;
        if (k >= 1) {
            ret += stirlign(n - 1, k - 1);
        }
    }
    seen_stirling[n][k] = 1;
    return memo_stirling[n][k] = ret;
}
const int MN = 1000000;
Mint fact[MN], iFac[MN];
void first() {
    fact[0] = Mint(1);
    for (int i = 1; i < MN; i++)
        fact[i] = fact[i - 1] * Mint(i);
    iFac[MN - 1] = fact[MN - 1].inv();
    for (int i = MN - 1; i >= 1; i--) {
        iFac[i - 1] = iFac[i] * Mint(i);
    }
    assert(fact[2345] * iFac[2345] == Mint(1));
}
Mint C(int n, int k) {
    if (n < k || k < 0)
        return Mint(0);
    return fact[n] * iFac[k] * iFac[n - k];
}

int main() {
    first();
    int N;
    cin >> N;

    Mint ans = 0;

    for (int group = 1; group <= N; group++) {
        for (int i = group; i <= N; i++) {
            Mint tmp = stirlign(i, group) * C(N, i);
            for (int j = 0; j < N - i; j++) {
                tmp *= group * (group - 1);
            }
            ans += tmp;
        }
    }
    cout << ans << endl;
}
0