結果

問題 No.665 Bernoulli Bernoulli
ユーザー PachicobuePachicobue
提出日時 2018-03-10 04:02:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 1,508 bytes
コンパイル時間 3,089 ms
コンパイル使用メモリ 218,592 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-11 06:19:50
合計ジャッジ時間 11,480 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 531 ms
6,820 KB
testcase_04 AC 502 ms
6,816 KB
testcase_05 AC 464 ms
6,816 KB
testcase_06 AC 455 ms
6,820 KB
testcase_07 AC 439 ms
6,816 KB
testcase_08 AC 441 ms
6,820 KB
testcase_09 AC 503 ms
6,820 KB
testcase_10 AC 441 ms
6,816 KB
testcase_11 AC 510 ms
6,816 KB
testcase_12 AC 502 ms
6,816 KB
testcase_13 AC 522 ms
6,816 KB
testcase_14 AC 516 ms
6,816 KB
testcase_15 AC 454 ms
6,816 KB
testcase_16 AC 475 ms
6,816 KB
testcase_17 AC 458 ms
6,816 KB
testcase_18 AC 443 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize "O3"
#pragma GCC target "tune=native"
#pragma GCC target "avx"
#define NDEBUG 1
#include <bits/stdc++.h>

using namespace std;
using ll = long long;

constexpr ll MOD = 1000000007LL;

constexpr int MAX = 10000;
int K;
ll ys[MAX + 2];

ll power(const ll p, const int n)
{
    if (n == 0) {
        return 1;
    }
    if (n % 2 == 1) {
        return power(p, n - 1) * p % MOD;
    } else {
        const ll pp = power(p, n / 2);
        return pp * pp % MOD;
    }
}

inline ll inverse(const ll p)
{
    return power(p, MOD - 2);
}

inline ll minu(const ll a, const ll b) { return (a >= b ? a - b : a + MOD - b); }

inline ll LagrangeInterpolation(const ll x)
{
    ll n = 1;
    for (ll i = 0; i <= K + 1; i++) {
        (n *= x - i) %= MOD;
    }
    ll ans = 0;
    for (ll i = 0; i <= K + 1; i++) {
        ll d = 1;
        for (ll j = 0; j <= K + 1; j++) {
            if (i == j) {
                continue;
            }
            (d *= minu(i, j)) %= MOD;
        }
        (ans += (n * inverse(x - i) % MOD) * (inverse(d) * ys[i] % MOD) % MOD) %= MOD;
    }
    return ans;
}

int main()
{
    ll N;
    cin >> N >> K;
    N %= MOD;
    if (N == 0) {
        cout << 0 << endl;
    } else {
        for (int i = 1; i <= K + 1; i++) {
            ys[i] = (ys[i - 1] + power(i, K)) % MOD;
            if (i == N) {
                cout << ys[i] << endl;
                return 0;
            }
        }
        cout << LagrangeInterpolation(N) << endl;
    }

    return 0;
}
0