結果
問題 | No.829 成長関数インフレ中 |
ユーザー | Pachicobue |
提出日時 | 2019-02-04 01:06:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,491 bytes |
コンパイル時間 | 616 ms |
コンパイル使用メモリ | 75,648 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-02 08:45:47 |
合計ジャッジ時間 | 2,169 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 52 ms
9,088 KB |
testcase_19 | AC | 45 ms
8,320 KB |
testcase_20 | AC | 57 ms
9,472 KB |
testcase_21 | WA | - |
ソースコード
#include <iostream> #include <vector> using ll = long long; constexpr ll MOD = 1000000007; template <ll mod = MOD> class ModCombination { public: ModCombination(const std::size_t n) : fact(n + 1, 1), inv(n + 1, 1), inv_fact(n + 1, 1) { for (ll i = 2; i <= (ll)n; i++) { fact[i] = (fact[i - 1] * i) % mod, inv[i] = ((mod - (mod / i)) * inv[mod % i]) % mod, inv_fact[i] = (inv_fact[i - 1] * inv[i]) % mod; } } ll factorial(const std::size_t n) const { return fact[n]; } ll inverse(const std::size_t n) const { return inv[n]; } ll inverseFactorial(const std::size_t n) const { return inv_fact[n]; } private: std::vector<ll> fact, inv, inv_fact; }; int main() { int N; ll B; std::cin >> N >> B; ModCombination<> mod(N); std::vector<ll> c(N + 1, 0); for (int i = 0; i < N; i++) { int S; std::cin >> S; c[N - S]++; } std::vector<ll> C = c; for (int i = 1; i <= N; i++) { C[i] += C[i - 1]; } ll p0 = 1, p1 = 0; for (int i = 0; i < N; i++) { const ll F = mod.factorial(C[i + 1]) * mod.inverseFactorial(C[i]) % MOD; const ll alpha = C[i + 1] == 0 ? 0 : (F * c[i + 1] % MOD) * mod.inverse(C[i + 1]) % MOD; const ll beta = C[i + 1] == 0 ? F : (F * C[i] % MOD) * mod.inverse(C[i + 1]) % MOD; const ll p0_ = p0; p0 = p0 * (alpha * B + beta) % MOD, p1 = ((p0_ * alpha) + p1 * (alpha * B + beta) % MOD) % MOD; } std::cout << p1 * B % MOD << std::endl; }