結果

問題 No.1667 Forest
ユーザー tko919tko919
提出日時 2021-09-03 23:48:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,639 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 204,084 KB
実行使用メモリ 12,628 KB
最終ジャッジ日時 2023-08-22 02:10:35
合計ジャッジ時間 10,423 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;

//template
#define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define ALL(v) (v).begin(),(v).end()
using ll=long long int;
const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12;
template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}

ll mod(ll a,ll m){return (a%m+m)%m;}
ll mpow(ll a,ll t,ll m){
   ll res=1;
   while(t){
      if(t&1)res=mod(res*a,m);
      a=mod(a*a,m); t>>=1;
   } return res;
}
ll minv(ll a,ll m){
   ll b=m,u=1,v=0;
   while(b){
      ll t=a/b;
      a-=t*b; swap(a,b);
      u-=t*v; swap(u,v);
   } u=mod(u,m); return u;
}
int get_root(int p){ //primitive root
   vector<int> ds;
   for(int x=1;x*x<=p-1;x++)if((p-1)%x==0){
      ds.push_back(x);
      if(x*x!=p-1)ds.push_back((p-1)/x);
   }
   sort(ALL(ds));
   ds.pop_back();
   for(int x=1;x<p;x++){
      for(auto& d:ds){
         if(mpow(x,d,p)==1)goto fail;
      }
      return x;
      fail:;
   } assert(0);
}

ll dp[310][310];
ll fact[310],ifac[310];

int main(){
   int n,m;
   cin>>n>>m;
   fact[0]=1;
   rep(x,1,n+1)fact[x]=(fact[x-1]*x)%m;
   ifac[n]=minv(fact[n],m);
   for(int x=n-1;x>=0;x--)ifac[x]=(ifac[x+1]*(x+1))%m;

   dp[0][0]=1;
   rep(i,0,n){
      rep(j,0,n){
         rep(add,1,n+1)if(i+add<=n){
            dp[i+add][j+1]=(dp[i+add][j+1]+((((dp[i][j]*fact[n-1-i])%m*ifac[add-1])%m*ifac[n-i-add])%m*(add==1?1:mpow(add,add-2,m)))%m)%m;
         }
      }
   }
   rep(x,0,n){
      cout<<dp[n][n-x]<<'\n';
   }
   return 0;
}
0