結果
問題 | No.829 成長関数インフレ中 |
ユーザー | chocorusk |
提出日時 | 2019-05-03 23:00:06 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,663 bytes |
コンパイル時間 | 753 ms |
コンパイル使用メモリ | 100,376 KB |
実行使用メモリ | 12,748 KB |
最終ジャッジ日時 | 2024-06-10 07:03:41 |
合計ジャッジ時間 | 2,143 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
7,496 KB |
testcase_01 | AC | 3 ms
9,544 KB |
testcase_02 | AC | 3 ms
9,672 KB |
testcase_03 | AC | 3 ms
9,540 KB |
testcase_04 | AC | 3 ms
9,544 KB |
testcase_05 | AC | 3 ms
9,672 KB |
testcase_06 | AC | 3 ms
9,544 KB |
testcase_07 | AC | 3 ms
7,624 KB |
testcase_08 | AC | 3 ms
9,676 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
7,500 KB |
testcase_12 | AC | 61 ms
12,488 KB |
testcase_13 | AC | 7 ms
9,548 KB |
testcase_14 | AC | 44 ms
11,716 KB |
testcase_15 | AC | 28 ms
9,928 KB |
testcase_16 | AC | 51 ms
12,484 KB |
testcase_17 | AC | 86 ms
12,612 KB |
testcase_18 | AC | 70 ms
12,748 KB |
testcase_19 | AC | 61 ms
10,444 KB |
testcase_20 | AC | 75 ms
10,700 KB |
testcase_21 | AC | 37 ms
10,440 KB |
ソースコード
#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> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; const ll MOD=1e9+7; ll powmod(ll a, ll k){ ll ap=a, ans=1; while(k){ if(k&1){ ans*=ap; ans%=MOD; } ap=ap*ap; ap%=MOD; k>>=1; } return ans; } ll inv(ll a){ return powmod(a, MOD-2); } ll f[1500001], invf[1500001]; void fac(int n){ f[0]=1; for(ll i=1; i<=n; i++) f[i]=f[i-1]*i%MOD; invf[n]=inv(f[n]); for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1)%MOD; } ll comb(int x, int y){ if(x<y) return 0; return f[x]*invf[y]%MOD*invf[x-y]%MOD; } int n; ll B; int c[200010]; ll a[200010], b[200010]; int main() { cin>>n>>B; for(int i=0; i<n; i++){ int s; cin>>s; c[s]++; } int s=0; fac(n); for(int i=n-1; i>=0; i--){ if(c[i]==0){ a[i]=0, b[i]=1; continue; } ll x=f[s+c[i]]*invf[s]%MOD; if(s==0) b[i]=0; else b[i]=f[s+c[i]-1]*invf[s-1]%MOD; a[i]=(x-b[i]+MOD)%MOD; s+=c[i]; } ll p=B; for(int i=0; i<n; i++){ p*=((a[i]*B+b[i])%MOD); p%=MOD; } ll q=0; for(int i=0; i<n; i++){ q+=a[i]*inv((a[i]*B+b[i])%MOD); q%=MOD; } cout<<p*q%MOD<<endl; return 0; }