結果

問題 No.1621 Sequence Inversions
ユーザー rianoriano
提出日時 2021-07-22 22:24:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 113 ms / 3,000 ms
コード長 2,431 bytes
コンパイル時間 2,253 ms
コンパイル使用メモリ 182,748 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-17 18:27:26
合計ジャッジ時間 3,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 38 ms
6,272 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 30 ms
6,400 KB
testcase_09 AC 47 ms
7,552 KB
testcase_10 AC 113 ms
11,264 KB
testcase_11 AC 33 ms
6,528 KB
testcase_12 AC 92 ms
11,136 KB
testcase_13 AC 91 ms
11,136 KB
testcase_14 AC 9 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 21 ms
5,888 KB
testcase_17 AC 42 ms
7,808 KB
testcase_18 AC 19 ms
5,760 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 49 ms
8,448 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 63 ms
9,472 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define rep(i,n) for(int (i)=0;(i)<(n);(i)++)
#define Pr pair<ll,ll>
#define Tp tuple<ll,ll,ll>
using Graph = vector<vector<int>>;

const ll mod = 998244353;


//累乗 aのb乗、正しmを法として求める
long long pw(long long a,long long b,long long m){
    if(b==0) return 1;
    else if(b%2==0){
        long long x = pw(a,b/2,m);
        return (x*x)%m;
    }
    else{
        long long x = pw(a,b-1,m);
        return (a*x)%m;
    }
}



//mod逆元
long long modinv(long long a, long long m) {
    long long b = m, u = 1, v = 0;
    while (b) {
        long long t = a / b;
        a -= t * b; swap(a, b);
        u -= t * v; swap(u, v);
    }
    u %= m;
    if (u < 0) u += m;
    return u;
}


//Combination2
//10^6くらいまで
//modはグローバルに定義しておく

vector<ll> fact;
vector<ll> invf;
ll comb(ll n,ll k){
    if(n<0||k<0||k>n) return 0LL;
    else{
        ll a = fact[n]*invf[k]%mod;
        a = a*invf[n-k]%mod;
        return a;
    }
}
    

int main() {
    ll N,K; cin >> N >> K;
    //main関数内に以下ペースト
    //N:max
    fact.assign(N+1,1LL);
    invf.assign(N+1,1LL);
    rep(i,N) fact[i+1] = fact[i]*(i+1)%mod;
    rep(i,N+1) invf[i] = modinv(fact[i],mod);
    map<ll,ll> cnt; set<ll> app;
    rep(i,N){
        ll b; cin >> b;
        app.insert(b);
        if(cnt.count(b)) cnt[b]++;
        else cnt[b] = 1;
    }
    ll dp[N+1][K+1];
    rep(i,N+1){
        rep(j,K+1) dp[i][j] = 0;
    }
    dp[0][0] = 1;
    rep(i,N){
        rep(j,K+1){
            dp[i][j] %= mod;
            rep(k,N-i){
                if(j+k>K) break;
                dp[i+1][j+k] += dp[i][j];
                dp[i+1][j+k] %= mod;
            }
        }
    }
    ll db[N+1][K+1];
    rep(i,N+1){
        rep(j,K+1) db[i][j] = 0;
    }
    db[0][0] = 1; int j = 0;
    for(ll x:app){
        int t = cnt[x];
        rep(i,t){
            rep(k,K+1){
                rep(m,i+1){
                    if(k+m>K) break;
                    db[j+1][k+m] += db[j][k];
                    db[j+1][k+m] %= mod;
                }
            }
            j++;
        }
    }
    rep(i,K+1){
        rep(j,K+1){
            if(j==0) continue;
            if(i+j>K) break;
            dp[N][i+j] += (mod-(dp[N][i]*db[N][j])%mod);
            dp[N][i+j] %= mod;
        }
    }
    ll ans = dp[N][K];
    cout << ans << endl;
}
0