結果

問題 No.2568 列辞書順列列
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-18 00:41:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 273 ms / 3,000 ms
コード長 929 bytes
コンパイル時間 5,178 ms
コンパイル使用メモリ 310,804 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-18 00:42:01
合計ジャッジ時間 15,328 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 175 ms
6,940 KB
testcase_03 AC 160 ms
6,944 KB
testcase_04 AC 212 ms
6,940 KB
testcase_05 AC 215 ms
6,944 KB
testcase_06 AC 213 ms
6,940 KB
testcase_07 AC 228 ms
6,940 KB
testcase_08 AC 219 ms
6,940 KB
testcase_09 AC 261 ms
6,940 KB
testcase_10 AC 271 ms
6,944 KB
testcase_11 AC 269 ms
6,940 KB
testcase_12 AC 266 ms
6,940 KB
testcase_13 AC 273 ms
6,944 KB
testcase_14 AC 255 ms
6,940 KB
testcase_15 AC 261 ms
6,944 KB
testcase_16 AC 270 ms
6,940 KB
testcase_17 AC 245 ms
6,944 KB
testcase_18 AC 258 ms
6,940 KB
testcase_19 AC 248 ms
6,940 KB
testcase_20 AC 263 ms
6,940 KB
testcase_21 AC 240 ms
6,944 KB
testcase_22 AC 253 ms
6,940 KB
testcase_23 AC 266 ms
6,940 KB
testcase_24 AC 258 ms
6,944 KB
testcase_25 AC 265 ms
6,940 KB
testcase_26 AC 254 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;

using mint = atcoder::modint998244353;

template <class T>
struct prefixsum {
    int n;
    vector<T> s;
    
    prefixsum() {}
    prefixsum(vector<T> a) : n(a.size()), s(n + 1) {
        for (int i = 0; i < n; i++) {
            s[i + 1] = s[i] + a[i];
        }
    }
   
    //[l, r)
    T get(int l, int r) {
        return s[r] - s[l];
    }
};

int main() {
    int n, m, q;
    cin >> n >> m >> q;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        a[i]--;
    }
    vector<mint> cnt(n);
    mint cur = 1;
    for (int i = n - 1; i >= 0; i--) {
        cnt[i] = mint(a[i]) * cur;
        cur *= mint(m);
    }
    prefixsum<mint> s(cnt);
    while (q--) {
        int l, r;
        cin >> l >> r;
        l--;
        mint ans = s.get(l, r) / mint(m).pow(n - r) + mint(1);
        cout << ans.val() << endl;
    }
}
0