結果

問題 No.1667 Forest
ユーザー だれだれ
提出日時 2021-08-17 20:12:16
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,614 bytes
コンパイル時間 3,431 ms
コンパイル使用メモリ 187,140 KB
実行使用メモリ 5,124 KB
最終ジャッジ日時 2023-08-21 18:58:14
合計ジャッジ時間 6,792 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 6 ms
4,384 KB
testcase_13 AC 6 ms
4,500 KB
testcase_14 AC 5 ms
4,404 KB
testcase_15 AC 6 ms
4,680 KB
testcase_16 AC 6 ms
4,620 KB
testcase_17 AC 5 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cmath>
#include <cstdio>
#include <fstream>
#include <functional>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <unordered_set>
using namespace std;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define GET_MACRO(_1, _2, _3, NAME, ...) NAME
#define _rep(i, n) _rep2(i, 0, n)
#define _rep2(i, a, b) for(int i = (int)(a); i < (int)(b); i++)
#define rep(...) GET_MACRO(__VA_ARGS__, _rep2, _rep)(__VA_ARGS__)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
using i64 = long long;
template<class T, class U>
bool chmin(T& a, const U& b) { return (b < a) ? (a = b, true) : false; }
template<class T, class U>
bool chmax(T& a, const U& b) { return (b > a) ? (a = b, true) : false; }

template<typename T>istream& operator>>(istream&i,vector<T>&v){rep(j,v.size())i>>v[j];return i;}
template<typename T>string join(vector<T>&v){stringstream s;rep(i,v.size())s<<' '<<v[i];return s.str().substr(1);}
template<typename T>ostream& operator<<(ostream&o,vector<T>&v){if(v.size())o<<join(v);return o;}
template<typename T>string join(vector<vector<T>>&vv){string s="\n";rep(i,vv.size())s+=join(vv[i])+"\n";return s;}
template<typename T>ostream& operator<<(ostream&o,vector<vector<T>>&vv){if(vv.size())o<<join(vv);return o;}

using mint = modint998244353;

vector<mint> fact(int x)
{
    vector<mint> res(x + 1);
    res[0] = 1;
    rep(i, x)
    {
        res[i + 1] = res[i] * (i + 1);
    }
    return res;
}

vector<mint> finv(int x)
{
    vector<mint> res(x + 1);
    mint t = 1;
    for(int i = 1; i <= x; i++)
    {
        t *= i;
    }
    res[x] = 1 / t;
    for(int i = x; i > 0; i--)
    {
        res[i - 1] = res[i] * i;
    }
    return res;
}

auto rrr = fact(200005);
auto lll = finv(200005);

mint comb(int x, int y)
{
    if (x < 0 || y < 0 || x - y < 0) return 0;
    return rrr[x] * lll[y] * lll[x - y];
}

mint perm(int x, int y)
{
    if (x < 0 || x - y < 0) return 0;
    return rrr[x] * lll[x - y];
}

int main(){
    int n;
    cin >> n;
    vector dp(n + 1, vector<mint>(n, 0));
    dp[0][0] = 1;
    for (int i = 0; i < n; i++){
        for (int j = 0; j < i + 1; j++){
            dp[i + 1][j] += dp[i][j];
            for (int k = 2; k <= n - i; k++){
                dp[i + k][j + k - 1] += dp[i][j] * comb(n - i - 1, k - 1) * pow_mod(k, k - 2, 998244353);
            }
        }
    }
    rep(i, n) cout << dp[n][i].val() << endl;
}
0