結果
問題 | No.665 Bernoulli Bernoulli |
ユーザー | snrnsidy |
提出日時 | 2021-10-22 20:21:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 883 bytes |
コンパイル時間 | 427 ms |
コンパイル使用メモリ | 46,148 KB |
実行使用メモリ | 625,448 KB |
最終ジャッジ日時 | 2024-09-23 02:25:31 |
合計ジャッジ時間 | 6,732 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | TLE | - |
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 | -- | - |
testcase_18 | -- | - |
ソースコード
#include<cstdio> #include<algorithm> #define mod 1000000007LL using namespace std; using ll=long long; ll c[10001][10001]; ll ans[10001]; pair<ll,ll> solve(ll a,ll b){ if(!b)return {1,0}; pair<ll,ll> ret=solve(b,a%b); ll x=ret.second,y=ret.first-(a/b)*ret.second; ll t=x/b; x+=b*t;y-=a*t; if(x<0){x+=b;y-=a;} return {x,y}; } int main(){ int n,k; ll exp,tmp,div; for(int i=0;i<=10000;++i){ for(int j=0;j<=10000;++j){ if(i<j)break; if(!j)c[i][j]=1; else{ c[i][j]=c[i-1][j]+c[i-1][j-1]; c[i][j]%=mod; } } } scanf("%d %d",&n,&k); ans[0]=n; exp=n+1; for(int i=1;i<=k;++i){ exp*=n+1; exp%=mod; tmp=exp+mod-1; tmp%=mod; for(int j=2;j<=i+1;++j){ tmp-=c[i+1][j]*ans[i-j+1]; tmp%=mod; if(tmp<0)tmp+=mod; } div=solve(c[i+1][1],mod).first; ans[i]=tmp*div; ans[i]%=mod; if(ans[i]<0)ans[i]+=mod; } printf("%lld",ans[k]); }