結果

問題 No.2369 Some Products
ユーザー 👑 NachiaNachia
提出日時 2023-06-30 21:26:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 449 ms / 2,500 ms
コード長 1,106 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 84,756 KB
実行使用メモリ 199,296 KB
最終ジャッジ日時 2024-07-07 08:59:06
合計ジャッジ時間 4,295 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 448 ms
199,040 KB
testcase_03 AC 446 ms
199,296 KB
testcase_04 AC 449 ms
199,296 KB
testcase_05 AC 34 ms
15,488 KB
testcase_06 AC 400 ms
199,168 KB
testcase_07 AC 30 ms
16,896 KB
testcase_08 AC 77 ms
38,528 KB
testcase_09 AC 27 ms
12,288 KB
testcase_10 AC 153 ms
71,680 KB
testcase_11 AC 301 ms
151,040 KB
testcase_12 AC 17 ms
8,960 KB
testcase_13 AC 186 ms
88,320 KB
testcase_14 AC 214 ms
104,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <atcoder/modint>
using namespace std;
using i32 = int;
using u32 = unsigned int;
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<(int)(n); i++)
const i64 INF = 1001001001001001001;

using Modint = atcoder::static_modint<998244353>;


int main(){
    int N; cin >> N;
    vector<Modint> P(N);
    rep(i,N){ int a; cin >> a; P[i] = a; }
    vector<vector<Modint>> inv(N+1);
    inv[0].resize(N+1); inv[0][0] = 1;
    rep(i,N){
        auto x = - P[i];
        inv[i+1] = inv[i];
        rep(j,N) inv[i+1][j+1] += inv[i+1][j] * x;
    }
    vector<vector<Modint>> prod(N+1);
    prod[0].resize(N+1); prod[0][0] = 1;
    rep(i,N){
        auto x = P[i];
        prod[i+1] = prod[i];
        for(int j=N-1; j>=0; j--) prod[i+1][j+1] += prod[i+1][j] * x;
    }
    int Q; cin >> Q;
    rep(q,Q){
        int l,r,k; cin >> l >> r >> k; l--;
        Modint ans = 0;
        for(int j=0; j<=k; j++) ans += prod[r][j] * inv[l][k-j];
        cout << ans.val() << '\n';
    }
    return 0;
}
0