結果

問題 No.2846 Birthday Cake
ユーザー kotatsugamekotatsugame
提出日時 2024-08-23 21:29:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,171 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 770 ms
コンパイル使用メモリ 79,604 KB
実行使用メモリ 59,776 KB
最終ジャッジ日時 2024-08-23 21:29:09
合計ジャッジ時間 7,575 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 972 ms
52,736 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1,171 ms
59,776 KB
testcase_06 AC 1,119 ms
58,240 KB
testcase_07 AC 801 ms
48,000 KB
testcase_08 AC 462 ms
33,536 KB
testcase_09 AC 157 ms
18,944 KB
testcase_10 AC 35 ms
8,576 KB
testcase_11 AC 6 ms
6,940 KB
testcase_12 AC 493 ms
34,432 KB
testcase_13 AC 247 ms
21,632 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 21 ms
6,940 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 3 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 11 ms
6,944 KB
testcase_33 AC 21 ms
6,940 KB
testcase_34 AC 11 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 56 ms
9,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<map>
#include<cassert>
using namespace std;
const long L=5354228880;
long l[25];
int K,N;
long fac[25];
long comb[25][25];
map<long,long>memo[25][25];
long dfs(int n,int k,long sum)
{
	if(l[n]*k<sum)return 0;
	if(n==N)return l[n]*k==sum;
	if(memo[n][k].find(sum)!=memo[n][k].end())return memo[n][k][sum];
	long ret=0;
	for(int i=0;i<=k&&l[n]*i+l[N]*(k-i)<=sum;i++)
	{
		ret+=comb[k][i]*dfs(n+1,k-i,sum-l[n]*i);
	}
	return memo[n][k][sum]=ret;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>K>>N;
	for(int i=0;i<=K;i++)
	{
		comb[i][0]=comb[i][i]=1;
		for(int j=1;j<i;j++)comb[i][j]=comb[i-1][j-1]+comb[i-1][j];
	}
	for(int n=1;n<=N;n++)l[n]=L/n;
	long v=dfs(1,K,L);
	cout<<v<<endl;
}
0