結果
問題 | No.829 成長関数インフレ中 |
ユーザー | beet |
提出日時 | 2019-05-04 20:31:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 67 ms / 2,000 ms |
コード長 | 3,138 bytes |
コンパイル時間 | 2,341 ms |
コンパイル使用メモリ | 210,104 KB |
実行使用メモリ | 9,984 KB |
最終ジャッジ日時 | 2024-06-23 06:59:14 |
合計ジャッジ時間 | 3,714 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
6,784 KB |
testcase_01 | AC | 7 ms
6,784 KB |
testcase_02 | AC | 7 ms
6,784 KB |
testcase_03 | AC | 7 ms
6,784 KB |
testcase_04 | AC | 8 ms
6,912 KB |
testcase_05 | AC | 7 ms
6,784 KB |
testcase_06 | AC | 8 ms
6,912 KB |
testcase_07 | AC | 7 ms
6,784 KB |
testcase_08 | AC | 7 ms
6,784 KB |
testcase_09 | AC | 7 ms
6,784 KB |
testcase_10 | AC | 8 ms
6,912 KB |
testcase_11 | AC | 7 ms
6,912 KB |
testcase_12 | AC | 35 ms
8,320 KB |
testcase_13 | AC | 9 ms
6,784 KB |
testcase_14 | AC | 25 ms
7,680 KB |
testcase_15 | AC | 24 ms
7,680 KB |
testcase_16 | AC | 40 ms
8,536 KB |
testcase_17 | AC | 67 ms
9,620 KB |
testcase_18 | AC | 66 ms
9,748 KB |
testcase_19 | AC | 54 ms
9,492 KB |
testcase_20 | AC | 65 ms
9,984 KB |
testcase_21 | AC | 22 ms
7,680 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} //INSERT ABOVE HERE template<typename T,T MOD = 1000000007> struct Mint{ T v; Mint():v(0){} Mint(signed v):v(v){} Mint(long long t){v=t%MOD;if(v<0) v+=MOD;} Mint pow(long long k){ Mint res(1),tmp(v); while(k){ if(k&1) res*=tmp; tmp*=tmp; k>>=1; } return res; } static Mint add_identity(){return Mint(0);} static Mint mul_identity(){return Mint(1);} Mint inv(){return pow(MOD-2);} Mint& operator+=(Mint a){v+=a.v;if(v>=MOD)v-=MOD;return *this;} Mint& operator-=(Mint a){v+=MOD-a.v;if(v>=MOD)v-=MOD;return *this;} Mint& operator*=(Mint a){v=1LL*v*a.v%MOD;return *this;} Mint& operator/=(Mint a){return (*this)*=a.inv();} Mint operator+(Mint a) const{return Mint(v)+=a;}; Mint operator-(Mint a) const{return Mint(v)-=a;}; Mint operator*(Mint a) const{return Mint(v)*=a;}; Mint operator/(Mint a) const{return Mint(v)/=a;}; Mint operator-() const{return v?Mint(MOD-v):Mint(v);} bool operator==(const Mint a)const{return v==a.v;} bool operator!=(const Mint a)const{return v!=a.v;} bool operator <(const Mint a)const{return v <a.v;} static vector<Mint> fact,finv,invs; static void init(int n){ int m=fact.size(); if(n<m) return; fact.resize(n+1,1); finv.resize(n+1,1); invs.resize(n+1,1); if(m==0) m=1; for(int i=m;i<=n;i++) fact[i]=fact[i-1]*Mint(i); finv[n]=Mint(1)/fact[n]; for(int i=n;i>=m;i--) finv[i-1]=finv[i]*Mint(i); for(int i=m;i<=n;i++) invs[i]=finv[i]*fact[i-1]; } static Mint C(int n,int k){ if(n<k||k<0) return Mint(0); init(n); return fact[n]*finv[n-k]*finv[k]; } static Mint H(int n,int k){ if(n<0||k<0) return Mint(0); if(!n&&!k) return Mint(1); init(n+k-1); return C(n+k-1,k); } }; template<typename T,T MOD> vector<Mint<T, MOD> > Mint<T, MOD>::fact = vector<Mint<T, MOD> >(); template<typename T,T MOD> vector<Mint<T, MOD> > Mint<T, MOD>::finv = vector<Mint<T, MOD> >(); template<typename T,T MOD> vector<Mint<T, MOD> > Mint<T, MOD>::invs = vector<Mint<T, MOD> >(); //INSERT ABOVE HERE signed main(){ int n,b; cin>>n>>b; vector<int> s(n); for(Int i=0;i<n;i++) cin>>s[i]; using M = Mint<int>; M::init(3e5); vector<int> cnt(n,0); for(int i=0;i<n;i++) cnt[s[i]]++; int sum=0; vector<M> xs,ys; for(int i=n-1;i>=0;i--){ if(cnt[i]==0) continue; M x=M::H(sum,cnt[i]); M y=M::H(sum+1,cnt[i])-x; x*=M::fact[cnt[i]]; y*=M::fact[cnt[i]]; xs.emplace_back(x); ys.emplace_back(y); sum+=cnt[i]; } int m=xs.size(); vector<M> dp(ys); { M tmp(1); for(int i=0;i<m;i++){ dp[i]*=tmp; tmp*=xs[i]+ys[i]*M(b); } } { M tmp(1); for(int i=m-1;i>=0;i--){ dp[i]*=tmp; tmp*=xs[i]+ys[i]*M(b); } } M ans(0); for(int i=0;i<m;i++) ans+=dp[i]; ans*=M(b); cout<<ans.v<<endl; return 0; }