結果

問題 No.2250 Split Permutation
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-07-20 16:29:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 3,000 ms
コード長 2,658 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 207,476 KB
実行使用メモリ 13,528 KB
最終ジャッジ日時 2023-10-20 17:04:55
合計ジャッジ時間 4,669 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 1 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 1 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 100 ms
13,528 KB
testcase_19 AC 90 ms
12,276 KB
testcase_20 AC 79 ms
11,416 KB
testcase_21 AC 48 ms
8,580 KB
testcase_22 AC 73 ms
10,692 KB
testcase_23 AC 15 ms
4,884 KB
testcase_24 AC 73 ms
10,692 KB
testcase_25 AC 100 ms
13,528 KB
testcase_26 AC 35 ms
6,996 KB
testcase_27 AC 10 ms
4,356 KB
testcase_28 AC 18 ms
5,148 KB
testcase_29 AC 100 ms
13,528 KB
testcase_30 AC 19 ms
5,412 KB
testcase_31 AC 6 ms
4,348 KB
testcase_32 AC 24 ms
5,940 KB
testcase_33 AC 56 ms
9,108 KB
testcase_34 AC 14 ms
4,884 KB
testcase_35 AC 38 ms
7,260 KB
testcase_36 AC 23 ms
5,940 KB
testcase_37 AC 100 ms
13,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

//RSQ (0-indexed)
template<class T> struct BIT {
    vector<T> bit;
    int N;

    BIT (int n){
        N = n;
        bit.resize(N);
    }

    void add(int loc, T val){
        loc++;
        while(loc <= N){
            bit[loc-1] += val;
            loc += loc & -loc;
        }
    }

    T sum(int l, int r){
        T res = _sum(r) - _sum(l-1);
        return res;
    }

    T _sum(int r){
        r++;
        T res = 0;
        while(r > 0){
            res += bit[r-1];
            r -= r & -r;
        }
        return res;
    }
};

const ll modc = 998244353;
class mint {
    ll x;
public:
    mint(ll x=0) : x((x%modc+modc)%modc) {}
    mint operator-() const {
      return mint(-x);
    }
    mint& operator+=(const mint& a) {
        if ((x += a.x) >= modc) x -= modc;
        return *this;
    }
    mint& operator-=(const mint& a) {
        if ((x += modc-a.x) >= modc) x -= modc;
        return *this;
    }
    mint& operator*=(const  mint& a) {
        (x *= a.x) %= modc;
        return *this;
    }
    mint operator+(const mint& a) const {
        mint res(*this);
        return res+=a;
    }
    mint operator-(const mint& a) const {
        mint res(*this);
        return res-=a;
    }
    mint operator*(const mint& a) const {
        mint res(*this);
        return res*=a;
    }
    mint pow(ll t) const {
        if (!t) return 1;
        mint a = pow(t>>1);
        a *= a;
        if (t&1) a *= *this;
        return a;
    }
    mint inv() const {
        return pow(modc-2);
    }
    mint& operator/=(const mint& a) {
        return (*this) *= a.inv();
    }
    mint operator/(const mint& a) const {
        mint res(*this);
        return res/=a;
    }
    bool operator == (const mint& a) const{
        return x == a.x;
    }
    friend ostream& operator<<(ostream& os, const mint& m){
        os << m.x;
        return os;
    }
    friend istream& operator>>(istream& ip, mint &m) {
        ll t;
        ip >> t;
        m = mint(t);
        return ip;
    }
    ll val(){
        return x;
    }
};

int main(){
 
    int N;
    mint ans=0, ti=mint(2).inv();
    cin >> N;
    vector<int> P(N+1);
    for (int i=1; i<=N; i++) cin >> P[i];
    BIT<mint> tc(N+1), ts(N+1);

    vector<mint> tp(N*2+1), tip(N*2+1);
    tp[0] = 1; tip[0] = 1;
    for (int i=1; i<=N*2; i++) tp[i] = tp[i-1] * 2, tip[i] = ti * tip[i-1];

    for (int i=1; i<=N; i++){
        ans += tc.sum(P[i]+1, N) * tp[N-1];
        ans -= ts.sum(P[i]+1, N) * tip[i];
        tc.add(P[i], 1);
        ts.add(P[i], tp[N+i-1]);
    }

    cout << ans << endl;

    return 0;
}
0