結果

問題 No.1667 Forest
ユーザー chocoruskchocorusk
提出日時 2021-09-03 21:47:05
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 236 ms / 3,000 ms
コード長 1,453 bytes
コンパイル時間 3,429 ms
コンパイル使用メモリ 182,360 KB
最終ジャッジ日時 2025-01-24 05:22:10
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
// using mint=modint998244353;
using mint=modint;
mint f[2000010], invf[2000010];
void fac(int n){
    f[0]=1;
    for(ll i=1; i<=n; i++) f[i]=f[i-1]*i;
    invf[n]=f[n].inv();
    for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1);
}
mint comb(int x, int y){
    if(!(0<=y && y<=x)) return 0;
    return f[x]*invf[y]*invf[x-y];
}
mint dp[303][303];
int main()
{
    int n, mod;
    cin>>n>>mod;
    mint::set_mod(mod);
    fac(n);
    for(int i=1; i<=n; i++){
        mint x=1;
        if(i>1) x=mint(i).pow(i-2);
        dp[i][i-1]+=x;
        for(int j=0; j<i; j++){
            for(int k=1; k+i<=n; k++){
                mint y=1;
                if(k>1) y=mint(k).pow(k-2);
                dp[i+k][j+k-1]+=dp[i][j]*comb(i+k-1, k-1)*y;
            }
        }
    }
    for(int i=0; i<n; i++){
        cout<<dp[n][i].val()<<endl;
    }
    return 0;
}
0