結果

問題 No.1102 Remnants
ユーザー LanatusLanatus
提出日時 2024-01-06 12:09:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 743 ms / 2,000 ms
コード長 1,354 bytes
コンパイル時間 1,860 ms
コンパイル使用メモリ 111,920 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-09-27 19:15:55
合計ジャッジ時間 9,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 483 ms
6,944 KB
testcase_03 AC 488 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 173 ms
16,256 KB
testcase_06 AC 31 ms
6,940 KB
testcase_07 AC 743 ms
18,816 KB
testcase_08 AC 4 ms
6,948 KB
testcase_09 AC 8 ms
6,944 KB
testcase_10 AC 320 ms
6,944 KB
testcase_11 AC 138 ms
6,940 KB
testcase_12 AC 229 ms
6,940 KB
testcase_13 AC 9 ms
6,940 KB
testcase_14 AC 85 ms
10,368 KB
testcase_15 AC 65 ms
8,704 KB
testcase_16 AC 182 ms
17,536 KB
testcase_17 AC 166 ms
16,640 KB
testcase_18 AC 189 ms
16,896 KB
testcase_19 AC 62 ms
7,808 KB
testcase_20 AC 185 ms
6,940 KB
testcase_21 AC 499 ms
11,264 KB
testcase_22 AC 606 ms
14,720 KB
testcase_23 AC 482 ms
12,032 KB
testcase_24 AC 362 ms
9,472 KB
testcase_25 AC 404 ms
17,024 KB
testcase_26 AC 34 ms
6,944 KB
testcase_27 AC 409 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cmath>
#include <iomanip>
#include <iostream>
#include <math.h>
#include <vector>
#include <tuple>
#include <set>
#include <map>

using namespace std;

using ll = long long;
const ll INFLL = 1e18;
const ll MOD = 1e9 + 7;

struct Comb {
  ll n, k;
  map<ll,ll> cache;

  Comb(ll _n, ll _k): n(_n), k(_k) {
    build();
  }

  void build() {
    ll b = 1;
    ll p = 1;

    for (ll i = 0; i < k; ++i) {
      b *= (n + k - 1 - i);
      b %= MOD;

      p *= i + 1;
      p %= MOD;
    }

    b = (b * modpow(p, MOD - 2)) % MOD;
    cache[n + k - 1] = b;

    for (ll i = n - 1; i >= 1; --i) {
      b = (b * i) % MOD * modpow(i + k, MOD - 2) % MOD;
      cache[i + k - 1] = b;
    }
  }

  ll get(ll n, ll x) {
    // cout << n - x + k << " " << x + k - 1 << endl;
    return (cache[n - x + k] * cache[x + k - 1]) % MOD;
  }

  ll modpow(ll a, ll n) {
    if (n == 0) return 1;
    if (n % 2) return a * modpow(a, n - 1) % MOD;
    ll t = modpow(a, n / 2);
    return (t * t) % MOD;
  }

};

int main() {
  ll n, k;
  cin >> n >> k;

  Comb com(n, k);
  vector<ll> T(n + 1);

  for (int i = 1; i <= n; ++i) {
    T[i] = com.get(n, i);
  }

  vector<ll> a(n + 1);
  for (int i = 1; i <= n; ++i) cin >> a[i];

  ll sum = 0;
  for (int i = 1; i <= n; ++i) {
    sum += (a[i] * T[i]) % MOD;
    sum %= MOD;
  }

  cout << sum << endl;
  return 0;
}
0