結果

問題 No.1621 Sequence Inversions
ユーザー SSRSSSRS
提出日時 2021-07-22 22:03:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,211 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 183,560 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-07-17 17:55:04
合計ジャッジ時間 8,620 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 8 ms
7,552 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 WA -
testcase_09 AC 110 ms
55,892 KB
testcase_10 AC 188 ms
108,032 KB
testcase_11 WA -
testcase_12 AC 355 ms
41,944 KB
testcase_13 AC 567 ms
25,696 KB
testcase_14 AC 26 ms
5,376 KB
testcase_15 AC 33 ms
5,376 KB
testcase_16 AC 245 ms
5,656 KB
testcase_17 AC 756 ms
7,636 KB
testcase_18 AC 234 ms
5,652 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 115 ms
5,376 KB
testcase_21 AC 949 ms
8,292 KB
testcase_22 AC 77 ms
5,376 KB
testcase_23 AC 1,311 ms
9,596 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
int main(){
  int N, K;
  cin >> N >> K;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  map<int, int> mp;
  for (int i = 0; i < N; i++){
    mp[A[i]]++;
  }
  vector<long long> dp(K + 1, 0);
  dp[0] = 1;
  int S = 0;
  for (auto P : mp){
    int cnt = P.second;
    vector<vector<vector<long long>>> dp2(S + 2, vector<vector<long long>>(cnt + 1, vector<long long>(K + 1, 0)));
    dp2[0][0][0] = 1;
    for (int i = 0; i <= S; i++){
      for (int j = 0; j <= cnt; j++){
        for (int k = 0; k <= K; k++){
          if (dp2[i][j][k] != 0){
            for (int l = 0; l <= cnt - j; l++){
              if ((S - i) * l <= K - k){
                int k2 = k + (S - i) * l;
                dp2[i + 1][j + l][k2] += dp2[i][j][k];
                dp2[i + 1][j + l][k2] % MOD;
              }
            }
          }
        }
      }
    }
    vector<long long> dp3(K + 1, 0);
    for (int i = 0; i <= K; i++){
      for (int j = 0; j <= K - i; j++){
        dp3[i + j] += dp[i] * dp2[S + 1][cnt][j];
        dp3[i + j] %= MOD;
      }
    }
    swap(dp, dp3);
    S += cnt;
  }
  cout << dp[K] << endl;
}
0