結果

問題 No.1532 Different Products
ユーザー V_MelvilleV_Melville
提出日時 2021-06-26 18:04:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 964 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 206,592 KB
実行使用メモリ 207,392 KB
最終ジャッジ日時 2024-06-25 09:13:37
合計ジャッジ時間 24,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 95 ms
168,232 KB
testcase_02 AC 41 ms
163,760 KB
testcase_03 AC 42 ms
163,728 KB
testcase_04 AC 41 ms
163,700 KB
testcase_05 AC 41 ms
163,796 KB
testcase_06 AC 41 ms
163,788 KB
testcase_07 AC 40 ms
163,764 KB
testcase_08 AC 41 ms
163,792 KB
testcase_09 AC 48 ms
164,304 KB
testcase_10 AC 96 ms
166,700 KB
testcase_11 AC 81 ms
165,680 KB
testcase_12 AC 235 ms
175,812 KB
testcase_13 AC 133 ms
169,872 KB
testcase_14 AC 546 ms
203,556 KB
testcase_15 AC 42 ms
163,744 KB
testcase_16 AC 100 ms
168,236 KB
testcase_17 AC 82 ms
166,316 KB
testcase_18 AC 69 ms
165,932 KB
testcase_19 AC 225 ms
174,404 KB
testcase_20 AC 512 ms
202,768 KB
testcase_21 AC 149 ms
172,832 KB
testcase_22 AC 134 ms
169,120 KB
testcase_23 AC 89 ms
168,108 KB
testcase_24 AC 469 ms
202,644 KB
testcase_25 AC 217 ms
176,452 KB
testcase_26 AC 53 ms
164,340 KB
testcase_27 AC 205 ms
176,836 KB
testcase_28 AC 167 ms
174,408 KB
testcase_29 AC 113 ms
166,576 KB
testcase_30 AC 317 ms
187,280 KB
testcase_31 AC 319 ms
188,812 KB
testcase_32 AC 429 ms
202,632 KB
testcase_33 AC 291 ms
184,980 KB
testcase_34 AC 476 ms
202,816 KB
testcase_35 AC 430 ms
202,640 KB
testcase_36 AC 484 ms
202,792 KB
testcase_37 AC 78 ms
164,700 KB
testcase_38 AC 498 ms
202,640 KB
testcase_39 AC 462 ms
202,636 KB
testcase_40 AC 460 ms
202,512 KB
testcase_41 AC 597 ms
205,472 KB
testcase_42 AC 542 ms
203,300 KB
testcase_43 AC 552 ms
203,680 KB
testcase_44 AC 587 ms
207,012 KB
testcase_45 AC 599 ms
207,136 KB
testcase_46 AC 576 ms
206,500 KB
testcase_47 AC 603 ms
207,264 KB
testcase_48 AC 597 ms
207,028 KB
testcase_49 AC 603 ms
207,140 KB
testcase_50 AC 605 ms
207,008 KB
testcase_51 AC 597 ms
207,264 KB
testcase_52 AC 597 ms
206,880 KB
testcase_53 AC 612 ms
207,392 KB
testcase_54 AC 588 ms
207,008 KB
testcase_55 AC 598 ms
207,268 KB
testcase_56 AC 596 ms
206,500 KB
testcase_57 AC 584 ms
206,628 KB
testcase_58 AC 597 ms
207,008 KB
testcase_59 AC 571 ms
205,984 KB
testcase_60 AC 603 ms
207,268 KB
testcase_61 AC 42 ms
163,824 KB
testcase_62 AC 41 ms
163,916 KB
testcase_63 AC 610 ms
207,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll INF=1e11;
const int N=205,M=1e5+5;
ll n,k,fac[N],two[N],ans;
unordered_map<ll,ll>dp2;
ll dp[N][M];
ll dfs(ll x,ll now){
	if(!x)return 1;
	if(now>=M){
		ll hash=x*INF+now;
		if(dp2.count(hash)){
			return dp2[hash];
		}
		if(now>=fac[x]){
			return two[x];
		}
		ll ans=0;
		ans=(ans+dfs(x-1,now));
		ans=(ans+dfs(min(now/x,x-1),now/x));
		return dp2[hash]=ans;
	}
	else{
		if(~dp[x][now]){
			return dp[x][now];
		}	
		ll ans=0;
		ans=(ans+dfs(x-1,now));
		ans=(ans+dfs(min(now/x,x-1),now/x));
		return dp[x][now]=ans;
	}
}
int main(){
	scanf("%lld%lld",&n,&k);
	memset(dp,-1,sizeof dp);
	fac[0]=two[0]=1;
	for(int i=1;i<=40;++i){
		two[i]=2ll*two[i-1];
	}
	for(int i=1;i<=n;++i){ 
		fac[i]=1ll*fac[i-1]*i;
		fac[i]=min(fac[i],INF);
	}
	for(int i=1;i<=min(n,k);++i){
		ans+=dfs(i-1,k/i);
	}
	printf("%lld\n",ans);
	return 0; 
}
/*
100 1000000000
1480348241
200 10000000000
44692356573
*/ 
0