結果

問題 No.1621 Sequence Inversions
ユーザー chocoruskchocorusk
提出日時 2021-07-22 21:51:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 582 ms / 3,000 ms
コード長 1,576 bytes
コンパイル時間 3,550 ms
コンパイル使用メモリ 197,488 KB
実行使用メモリ 225,004 KB
最終ジャッジ日時 2024-07-17 17:25:34
合計ジャッジ時間 8,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
224,896 KB
testcase_01 AC 58 ms
224,868 KB
testcase_02 AC 56 ms
224,868 KB
testcase_03 AC 59 ms
224,768 KB
testcase_04 AC 63 ms
224,768 KB
testcase_05 AC 58 ms
224,896 KB
testcase_06 AC 58 ms
224,896 KB
testcase_07 AC 58 ms
224,768 KB
testcase_08 AC 211 ms
224,768 KB
testcase_09 AC 100 ms
224,768 KB
testcase_10 AC 109 ms
224,768 KB
testcase_11 AC 224 ms
224,768 KB
testcase_12 AC 527 ms
224,896 KB
testcase_13 AC 582 ms
224,896 KB
testcase_14 AC 129 ms
224,768 KB
testcase_15 AC 67 ms
224,896 KB
testcase_16 AC 92 ms
224,908 KB
testcase_17 AC 131 ms
224,848 KB
testcase_18 AC 90 ms
224,768 KB
testcase_19 AC 55 ms
224,640 KB
testcase_20 AC 70 ms
224,896 KB
testcase_21 AC 150 ms
224,776 KB
testcase_22 AC 105 ms
224,856 KB
testcase_23 AC 174 ms
225,004 KB
testcase_24 AC 58 ms
224,768 KB
testcase_25 AC 58 ms
224,768 KB
testcase_26 AC 57 ms
224,768 KB
testcase_27 AC 59 ms
224,768 KB
testcase_28 AC 58 ms
224,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
using mint=modint998244353;
mint dp[101][101][5555];
int main()
{
    int n, k;
    cin>>n>>k;
    int a[101];
    map<int, int> mp;
    for(int i=0; i<n; i++){
        cin>>a[i];
        mp[a[i]]++;
    }
    sort(a, a+n);
    dp[0][0][0]=1;
    for(int i=1; i<n; i++){
        if(a[i-1]!=a[i]){
            for(int j=0; j<=k; j++){
                mint s=0;
                for(int pr=0; pr<i; pr++){
                    s+=dp[i-1][pr][j];
                }
                for(int l=0; l<=i; l++){
                    dp[i][l][j+i-l]+=s;
                }
            }
            continue;
        }
        for(int pr=0; pr<i; pr++){
            for(int j=0; j<=k; j++){
                if(dp[i-1][pr][j]==0) continue;
                for(int l=pr+1; l<=i; l++){
                    dp[i][l][j+i-l]+=dp[i-1][pr][j];
                }
            }
        }
    }
    mint ans=0;
    for(int i=0; i<=n; i++) ans+=dp[n-1][i][k];
    cout<<ans.val()<<endl;
    return 0;
}
0