結果

問題 No.2250 Split Permutation
ユーザー nono00nono00
提出日時 2023-03-18 00:27:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 113 ms / 3,000 ms
コード長 1,491 bytes
コンパイル時間 961 ms
コンパイル使用メモリ 80,604 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-18 12:43:08
合計ジャッジ時間 2,971 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 113 ms
6,944 KB
testcase_19 AC 103 ms
6,944 KB
testcase_20 AC 94 ms
6,944 KB
testcase_21 AC 55 ms
6,940 KB
testcase_22 AC 83 ms
6,940 KB
testcase_23 AC 17 ms
6,940 KB
testcase_24 AC 81 ms
6,944 KB
testcase_25 AC 113 ms
6,940 KB
testcase_26 AC 42 ms
6,944 KB
testcase_27 AC 12 ms
6,944 KB
testcase_28 AC 22 ms
6,940 KB
testcase_29 AC 113 ms
6,940 KB
testcase_30 AC 23 ms
6,944 KB
testcase_31 AC 7 ms
6,940 KB
testcase_32 AC 29 ms
6,944 KB
testcase_33 AC 62 ms
6,944 KB
testcase_34 AC 17 ms
6,944 KB
testcase_35 AC 44 ms
6,944 KB
testcase_36 AC 27 ms
6,940 KB
testcase_37 AC 113 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

#include <atcoder/modint>

namespace nono {

template<typename T>
class FenwickTree {
  public:
    FenwickTree(const int size) : size_(size + 1), data_(size + 1) {}
    FenwickTree(const std::vector<T> &vec) : size_(vec.size() + 1), data_(vec.size() + 1) {
        for (int i = 0; i < size_; ++i) {
            add(i, vec[i]);
        }
    }

    void add(int i, const T delta) {
        for (i++; i < size_; i += i & -i) {
            data_[i] += delta;
        }
    }

    T get_range(const int l, const int r) {
        return get_sum(r) - get_sum(l);
    }

    T operator[](const int i) {
        return get_range(i, i + 1);
    }

  private:
    const int size_;
    std::vector<T> data_;

    T get_sum(int i) {
        T sum = 0;
        for (; i > 0; i -= i & -i) {
            sum += data_[i];
        }
        return sum;
    }
};

} // namespace nono

using mint = atcoder::modint998244353;

int main() {
    int n;
    std::cin >> n;
    std::vector<int> p(n);
    for (int i = 0; i < n; i++) std::cin >> p[i];
    nono::FenwickTree<int> count(n);
    nono::FenwickTree<mint> fen(n);
    mint ans = 0;
    mint up = 1;
    mint down = mint(2).pow(n - 1);

    for (int i = 0; i < n; i++) {
        p[i]--;
        ans += count.get_range(p[i], n) * mint(2).pow(n - 1) - fen.get_range(p[i], n) * down;
        count.add(p[i], 1);
        fen.add(p[i], up);
        up *= 2;
        down /= 2;
    }
    std::cout << ans.val() << '\n';
}
0