結果

問題 No.2616 中央番目の中央値
ユーザー vjudge1vjudge1
提出日時 2024-11-12 01:32:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 1,213 bytes
コンパイル時間 2,709 ms
コンパイル使用メモリ 214,012 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-11-12 01:32:56
合計ジャッジ時間 7,046 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 4 ms
5,248 KB
testcase_15 AC 6 ms
5,248 KB
testcase_16 AC 11 ms
5,248 KB
testcase_17 AC 15 ms
5,248 KB
testcase_18 AC 25 ms
5,376 KB
testcase_19 AC 48 ms
7,424 KB
testcase_20 AC 49 ms
7,424 KB
testcase_21 AC 99 ms
11,136 KB
testcase_22 AC 145 ms
15,072 KB
testcase_23 AC 148 ms
15,072 KB
testcase_24 AC 134 ms
15,104 KB
testcase_25 AC 135 ms
15,104 KB
testcase_26 AC 151 ms
15,232 KB
testcase_27 AC 173 ms
15,232 KB
testcase_28 AC 150 ms
15,104 KB
testcase_29 AC 150 ms
15,104 KB
testcase_30 AC 151 ms
15,104 KB
testcase_31 AC 152 ms
15,068 KB
testcase_32 AC 152 ms
15,104 KB
testcase_33 AC 149 ms
15,096 KB
testcase_34 AC 148 ms
15,104 KB
testcase_35 AC 149 ms
15,104 KB
testcase_36 AC 150 ms
15,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast,no-stack-protector")
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define F first
#define S second

const int N=3e5+10;
const ll mod=998244353;
int p[N];

ll fpow(ll x, int k){
    ll res=1;
    while(k){
        if (k&1) res=res*x%mod;
        x=x*x%mod;
        k>>=1;
    }
    return res;
}

ll inv[N<<1], fac[N<<1];
ll C(int n, int k){return fac[n]*inv[k]%mod*inv[n-k]%mod;}

int n;
int bit[N];
void update(int x){for(;x<=n;x+=x&-x) bit[x]++;}
int query(int x){
    int res=0;
    for(;x;x-=x&-x) res+=bit[x];
    return res;
}

void _solve(){
    cin >> n;
    fac[0]=inv[0]=1;
    for(int i=1;i<=(n<<1);i++){
        fac[i]=fac[i-1]*i%mod;
        inv[i]=fpow(fac[i], mod-2);
    }
    for(int i=1;i<=n;i++) cin >> p[i];
    ll ans=0;
    for(int i=1;i<=n;i++){
        int b=query(p[i]);
        int a=i-b-1;
        int d=p[i]-b-1;
        int c=n-i-d;
        ans+=C(a+d, min(a, d))*C(b+c, min(b, c))%mod;
        ans%=mod;
        update(p[i]);
    }
    cout << ans << '\n';
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int _t=1;
    //cin >> _t;
    while(_t--) _solve();
}
0