結果

問題 No.1621 Sequence Inversions
ユーザー dekomori_sanaedekomori_sanae
提出日時 2022-01-28 12:14:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,184 ms / 3,000 ms
コード長 1,981 bytes
コンパイル時間 1,024 ms
コンパイル使用メモリ 98,808 KB
実行使用メモリ 417,664 KB
最終ジャッジ日時 2024-06-08 19:03:06
合計ジャッジ時間 9,554 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 6 ms
7,424 KB
testcase_04 AC 267 ms
145,536 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 10 ms
9,984 KB
testcase_08 AC 385 ms
158,592 KB
testcase_09 AC 503 ms
211,840 KB
testcase_10 AC 1,184 ms
417,664 KB
testcase_11 AC 523 ms
174,080 KB
testcase_12 AC 1,053 ms
407,424 KB
testcase_13 AC 970 ms
410,496 KB
testcase_14 AC 116 ms
56,192 KB
testcase_15 AC 75 ms
39,680 KB
testcase_16 AC 233 ms
119,680 KB
testcase_17 AC 516 ms
233,344 KB
testcase_18 AC 216 ms
113,024 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 84 ms
53,888 KB
testcase_21 AC 590 ms
265,088 KB
testcase_22 AC 136 ms
66,432 KB
testcase_23 AC 718 ms
319,744 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <string>
#include <algorithm>
#include <utility>
#include <cmath>
#include <vector>
#include <stack>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <numeric>
#include <functional>
using namespace std;
typedef long long ll;
typedef vector<ll> vl;
typedef vector<vector<ll>> vvl;
typedef pair<ll, ll> P;
#define rep(i, n) for(ll i = 0; i < n; i++)
#define exrep(i, a, b) for(ll i = a; i <= b; i++)
#define out(x) cout << x << endl
#define exout(x) printf("%.10f\n", x)
#define chmax(x, y) x = max(x, y)
#define chmin(x, y) x = min(x, y)
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define pb push_back
#define re0 return 0
const ll mod = 998244353;
const ll INF = 1e16;
  
int main() {
    ll n, K;
    cin >> n >> K;

    map<ll, ll> mp;
    rep(i, n) {
        ll a;
        cin >> a;
        mp[a]++;
    }

    vector<vvl> P(K+1, vvl(n+1, vl(n+1)));  // P[i][j][k] : iをj以下の数k個で表す場合の数
    exrep(j, 0, n) {
        exrep(k, 1, n) {
            P[0][j][k] = 1;
        }
    }
    exrep(i, 1, K) {
        exrep(j, 1, n) {
            exrep(k, 1, n) {
                P[i][j][k] += P[i][j][k-1];
                if(i - k >= 0) {
                    P[i][j][k] += P[i - k][j-1][k];
                }
                P[i][j][k] %= mod;
            }
        }
    }

    vvl dp(n+1, vl(K+1));  // dp[i][j] : i個挿入して、転倒数がjとなる場合の数
    ll i = 0;  // いままで並べた個数
    for(auto p : mp) {
        ll x = p.second;  // いまから挿入する数の個数
        if(i == 0) {
            dp[x][0] = 1;
            i += x;
            continue;
        }
        exrep(j, 0, K) {
            exrep(k, 0, min(K - j, i*x)) {
                dp[i + x][j + k] += P[k][i][x] * dp[i][j];
                dp[i + x][j + k]  %= mod;
            }
        }
        i += x;
    }

    out(dp[n][K]);
    re0;
}
0