結果

問題 No.2717 Sum of Subarray of Subsequence
ユーザー tofu_dra2tofu_dra2
提出日時 2024-04-06 00:19:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 2,816 bytes
コンパイル時間 4,771 ms
コンパイル使用メモリ 272,908 KB
実行使用メモリ 19,548 KB
最終ジャッジ日時 2024-04-06 00:20:08
合計ジャッジ時間 7,278 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
8,064 KB
testcase_01 AC 9 ms
8,064 KB
testcase_02 AC 8 ms
8,064 KB
testcase_03 AC 8 ms
8,064 KB
testcase_04 AC 8 ms
8,064 KB
testcase_05 AC 8 ms
8,064 KB
testcase_06 AC 8 ms
8,064 KB
testcase_07 AC 9 ms
8,064 KB
testcase_08 AC 8 ms
8,064 KB
testcase_09 AC 76 ms
19,492 KB
testcase_10 AC 76 ms
19,496 KB
testcase_11 AC 77 ms
19,468 KB
testcase_12 AC 76 ms
19,488 KB
testcase_13 AC 76 ms
19,548 KB
testcase_14 AC 75 ms
19,468 KB
testcase_15 AC 76 ms
19,496 KB
testcase_16 AC 76 ms
19,492 KB
testcase_17 AC 75 ms
19,496 KB
testcase_18 AC 76 ms
19,544 KB
testcase_19 AC 77 ms
19,496 KB
testcase_20 AC 8 ms
8,064 KB
testcase_21 AC 8 ms
8,064 KB
testcase_22 AC 76 ms
19,548 KB
testcase_23 AC 65 ms
19,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

typedef long long int ll;
typedef long double ld;

using namespace std;
using namespace atcoder;

#define inf 1010000000
#define llinf 1001000000000000000ll
#define pi 3.141592653589793238
#define rep(i, n) for(ll i = 0; i < (n); i++)
#define rep1(i, n) for(ll i = 1; i <= (n); i++)
#define rep2(i,l,r) for(ll i = (l); i < (r); i++)
#define per(i, n) for(ll i = (n)-1; i >= 0; i--)
#define each(x, v) for (auto&& x : v)
#define rng(a) a.begin(),a.end()
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define pob pop_back
#define st string
#define pcnt __builtin_popcountll
#define bit(n) (1LL<<(n))

template <class T = ll>
inline T in(){ T x; cin >> x; return (x);}
#define vcin(x,n) {for(ll loop=0; loop<(n); loop++) cin>>x[loop];}

#define ret(x) { cout<<(x)<<endl;}
#define rets(x) { cout<<(x)<< " ";}
#define dame { ret("-1"); return 0;}
#define yes { ret("Yes"); return 0;}
#define no { ret("No"); return 0;}
#define Endl cout<<endl;
#define dump(x) { cout << #x << " = " << (x) << endl;}

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false;}
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false;}

// 仮マクロ 便利だったら昇格
#define unique(v) v.erase( unique(v.begin(), v.end()), v.end())
// ここまで仮マクロ

// clock()/CLOCKS_PER_SEC 秒数を知りたいときに用いる

#define mod 998244353
using mint = modint998244353;

/*

#define mod 1000000007
using mint = modint1000000007;

*/

vector<ll> dx={1,0,-1,0};
vector<ll> dy={0,1,0,-1};

using pl = pair<ll,ll>;
using ppl = pair<pl,ll>;
// G.assign(n, vector<ll>()); グローバル変数にGを置く時に置く

// 関数を置くのはここ以下

const ll MAX = 200200;

vector<ll> fac,finv,inv;

void binom_init() {
  fac.resize(MAX);
  finv.resize(MAX);
  inv.resize(MAX);
  fac[0] = fac[1] = 1;
  inv[1] = 1;
  finv[0] = finv[1] = 1;
  for(int i=2; i<MAX; i++){
    fac[i] = fac[i-1] *i %mod;
    inv[i] = mod - mod /i *inv[mod%i] %mod;
    finv[i] = finv[i-1]*inv[i]%mod;
  }
}

ll binom(ll n, ll r){
  if(n<r || n<0 || r<0) return 0;
  return fac[n]*finv[r]%mod*finv[n-r]%mod;
}

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(20);
  binom_init();
  ll n; cin >> n;
  ll a[n]; vcin(a,n);

  vector<ll> v1(n+1),v2(n+1);
  rep(i,n+1){
    v1[i] = finv[i];
    v1[i] *= i+1; v1[i] %= mod;
    v2[i] = finv[i];
  }
  vector<ll> v3 = convolution(v1,v2);
  rep(i,n){
    v3[i] *= fac[i];
    v3[i] %= mod;
  }

  // each(x,v1) rets(x)
  // Endl
  // each(x,v2) rets(x)
  // Endl
  // each(x,v3) rets(x)
  // Endl

  mint ans;
  rep(i,n){
    ans += (mint)a[i] * v3[i] * v3[n-i-1];
  }
  ret(ans.val())
}
0