結果

問題 No.1532 Different Products
ユーザー V_MelvilleV_Melville
提出日時 2021-06-26 18:17:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 554 ms / 4,000 ms
コード長 1,017 bytes
コンパイル時間 2,007 ms
コンパイル使用メモリ 208,040 KB
実行使用メモリ 208,164 KB
最終ジャッジ日時 2024-06-25 09:14:31
合計ジャッジ時間 22,392 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
163,840 KB
testcase_01 AC 102 ms
168,232 KB
testcase_02 AC 62 ms
163,712 KB
testcase_03 AC 62 ms
163,712 KB
testcase_04 AC 62 ms
163,712 KB
testcase_05 AC 63 ms
163,712 KB
testcase_06 AC 63 ms
163,700 KB
testcase_07 AC 62 ms
163,712 KB
testcase_08 AC 62 ms
163,932 KB
testcase_09 AC 69 ms
164,336 KB
testcase_10 AC 104 ms
166,824 KB
testcase_11 AC 93 ms
165,928 KB
testcase_12 AC 226 ms
176,144 KB
testcase_13 AC 123 ms
170,104 KB
testcase_14 AC 441 ms
204,196 KB
testcase_15 AC 59 ms
163,840 KB
testcase_16 AC 104 ms
168,176 KB
testcase_17 AC 92 ms
166,316 KB
testcase_18 AC 83 ms
166,060 KB
testcase_19 AC 195 ms
174,788 KB
testcase_20 AC 501 ms
202,512 KB
testcase_21 AC 142 ms
172,836 KB
testcase_22 AC 130 ms
169,380 KB
testcase_23 AC 93 ms
168,236 KB
testcase_24 AC 404 ms
202,608 KB
testcase_25 AC 191 ms
176,708 KB
testcase_26 AC 69 ms
164,372 KB
testcase_27 AC 184 ms
176,964 KB
testcase_28 AC 146 ms
174,280 KB
testcase_29 AC 116 ms
166,704 KB
testcase_30 AC 257 ms
187,668 KB
testcase_31 AC 275 ms
189,072 KB
testcase_32 AC 376 ms
202,512 KB
testcase_33 AC 239 ms
185,232 KB
testcase_34 AC 402 ms
202,512 KB
testcase_35 AC 379 ms
202,644 KB
testcase_36 AC 402 ms
203,432 KB
testcase_37 AC 88 ms
164,736 KB
testcase_38 AC 426 ms
202,512 KB
testcase_39 AC 389 ms
202,508 KB
testcase_40 AC 385 ms
202,640 KB
testcase_41 AC 500 ms
206,224 KB
testcase_42 AC 458 ms
203,940 KB
testcase_43 AC 482 ms
204,448 KB
testcase_44 AC 514 ms
207,784 KB
testcase_45 AC 528 ms
207,912 KB
testcase_46 AC 513 ms
207,264 KB
testcase_47 AC 522 ms
208,036 KB
testcase_48 AC 515 ms
207,908 KB
testcase_49 AC 525 ms
207,908 KB
testcase_50 AC 514 ms
207,776 KB
testcase_51 AC 520 ms
208,032 KB
testcase_52 AC 536 ms
207,652 KB
testcase_53 AC 554 ms
208,164 KB
testcase_54 AC 510 ms
207,668 KB
testcase_55 AC 519 ms
207,908 KB
testcase_56 AC 523 ms
207,396 KB
testcase_57 AC 507 ms
207,396 KB
testcase_58 AC 525 ms
207,792 KB
testcase_59 AC 501 ms
206,752 KB
testcase_60 AC 548 ms
208,164 KB
testcase_61 AC 59 ms
163,712 KB
testcase_62 AC 60 ms
163,840 KB
testcase_63 AC 511 ms
208,036 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(now>=M){
		ll hash=x*INF+now;
		if(dp2.count(hash)){
			return dp2[hash];
		}
		if(now>=fac[x]){
			return dp2[hash]=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];
		}	
		if(now>=fac[x]){
			return dp[x][now]=two[x];
		}
		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(ll i=1;i<=min(n,k);++i){
		ans+=dfs(min(k/i,i-1),k/i);
	}
	printf("%lld\n",ans);
	return 0; 
}
/*
100 1000000000
1480348241
200 10000000000
44692356573
*/ 
0