結果

問題 No.1825 Except One
ユーザー se1ka2se1ka2
提出日時 2022-01-28 21:54:55
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 34 ms / 3,000 ms
コード長 593 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 66,416 KB
実行使用メモリ 108,108 KB
最終ジャッジ日時 2025-01-01 23:09:25
合計ジャッジ時間 2,399 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
using namespace std;
typedef long long ll;

ll dp[52][52][5002];

int main()
{
	int n;
	cin >> n;
	int a[52];
	for(int i = 0; i < n; i++) cin >> a[i];
	sort(a, a + n);
	dp[0][0][0] = 1;
	for(int i = 0; i < n; i++){
		for(int j = 0; j <= i; j++){
			for(int k = 0; k <= 5000; k++){
				dp[i + 1][j][k] += dp[i][j][k];
				if(k >= a[i] * (j - 1)) dp[i + 1][j + 1][k + a[i]] += dp[i][j][k];
			}
		}
	}
	ll ans = 0;
	for(int j = 2; j <= n; j++){
		for(int k = 0; k <= 5000; k++){
			if(k % (j - 1) == 0) ans += dp[n][j][k];
		}
	}
	cout << ans << endl;
}
0