結果

問題 No.1621 Sequence Inversions
ユーザー 沙耶花沙耶花
提出日時 2021-07-22 22:04:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,364 ms / 3,000 ms
コード長 1,122 bytes
コンパイル時間 5,283 ms
コンパイル使用メモリ 273,488 KB
実行使用メモリ 215,808 KB
最終ジャッジ日時 2024-07-17 17:56:52
合計ジャッジ時間 13,193 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
202,752 KB
testcase_01 AC 83 ms
202,752 KB
testcase_02 AC 92 ms
202,948 KB
testcase_03 AC 85 ms
202,880 KB
testcase_04 AC 83 ms
203,008 KB
testcase_05 AC 82 ms
202,624 KB
testcase_06 AC 84 ms
203,264 KB
testcase_07 AC 118 ms
204,416 KB
testcase_08 AC 333 ms
212,480 KB
testcase_09 AC 988 ms
215,424 KB
testcase_10 AC 2,364 ms
215,808 KB
testcase_11 AC 374 ms
212,352 KB
testcase_12 AC 280 ms
208,384 KB
testcase_13 AC 160 ms
206,208 KB
testcase_14 AC 67 ms
204,288 KB
testcase_15 AC 66 ms
203,648 KB
testcase_16 AC 77 ms
203,904 KB
testcase_17 AC 109 ms
203,904 KB
testcase_18 AC 82 ms
203,904 KB
testcase_19 AC 56 ms
203,008 KB
testcase_20 AC 73 ms
203,648 KB
testcase_21 AC 113 ms
204,160 KB
testcase_22 AC 73 ms
203,720 KB
testcase_23 AC 115 ms
204,288 KB
testcase_24 AC 63 ms
202,752 KB
testcase_25 AC 59 ms
203,008 KB
testcase_26 AC 58 ms
202,880 KB
testcase_27 AC 64 ms
202,880 KB
testcase_28 AC 58 ms
202,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

mint memo[101][101][5001];
bool v[101][101][5001];
mint get(int x,int t,int k){
	if(x<0){
		if(t!=0||k!=0)return 0;
		return 1;
	}
	
	if(v[x][t][k])return memo[x][t][k];
	
	v[x][t][k] = true;
	mint ret = 0;
	rep(i,t+1){
		if(i*x>k)break;
		ret += get(x-1,t-i,k-i*x);
	}
	memo[x][t][k] = ret;
	return ret;
}

int main(){
	
	int N,K;
	cin>>N>>K;
	
	vector<int> A(N);
	vector<int> t;
	rep(i,N){
		cin>>A[i];
		t.push_back(A[i]);
	}
	
	sort(t.begin(),t.end());
	
	t.erase(unique(t.begin(),t.end()),t.end());
	
	vector<int> cnt(t.size(),0);
	
	rep(i,N){
		int d = distance(t.begin(),lower_bound(t.begin(),t.end(),A[i]));
		cnt[d] ++;
	}
	
	vector<mint> dp(K+1,0);
	dp[0] = 1;
	int sum = 0;
	rep(i,t.size()){
		vector<mint> ndp(K+1,0);
		
		rep(j,K+1){
			ndp[j] = get(sum,cnt[i],j);
		}
		sum += cnt[i];
		dp = convolution(dp,ndp);
		while(dp.size()>K+1)dp.pop_back();
	}
	
	cout<<dp[K].val()<<endl;

	return 0;
}
0