結果

問題 No.1532 Different Products
ユーザー spipipikespipipike
提出日時 2021-06-04 22:51:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 572 ms / 4,000 ms
コード長 1,235 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 190,084 KB
実行使用メモリ 22,800 KB
最終ジャッジ日時 2024-04-30 11:10:31
合計ジャッジ時間 21,193 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 93 ms
12,524 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 72 ms
11,508 KB
testcase_10 AC 117 ms
14,844 KB
testcase_11 AC 99 ms
14,220 KB
testcase_12 AC 224 ms
18,496 KB
testcase_13 AC 143 ms
17,304 KB
testcase_14 AC 362 ms
19,876 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 96 ms
11,148 KB
testcase_17 AC 109 ms
14,620 KB
testcase_18 AC 108 ms
14,856 KB
testcase_19 AC 221 ms
18,600 KB
testcase_20 AC 394 ms
20,332 KB
testcase_21 AC 141 ms
12,976 KB
testcase_22 AC 148 ms
16,260 KB
testcase_23 AC 127 ms
15,728 KB
testcase_24 AC 369 ms
19,872 KB
testcase_25 AC 195 ms
16,292 KB
testcase_26 AC 52 ms
9,564 KB
testcase_27 AC 173 ms
13,948 KB
testcase_28 AC 148 ms
13,760 KB
testcase_29 AC 113 ms
11,128 KB
testcase_30 AC 219 ms
15,640 KB
testcase_31 AC 228 ms
15,828 KB
testcase_32 AC 286 ms
16,660 KB
testcase_33 AC 210 ms
15,332 KB
testcase_34 AC 329 ms
19,124 KB
testcase_35 AC 275 ms
17,572 KB
testcase_36 AC 318 ms
18,524 KB
testcase_37 AC 73 ms
9,052 KB
testcase_38 AC 374 ms
19,312 KB
testcase_39 AC 307 ms
18,368 KB
testcase_40 AC 367 ms
18,548 KB
testcase_41 AC 498 ms
22,688 KB
testcase_42 AC 395 ms
20,136 KB
testcase_43 AC 448 ms
20,472 KB
testcase_44 AC 558 ms
22,680 KB
testcase_45 AC 536 ms
22,692 KB
testcase_46 AC 564 ms
22,456 KB
testcase_47 AC 547 ms
22,732 KB
testcase_48 AC 529 ms
22,660 KB
testcase_49 AC 545 ms
22,708 KB
testcase_50 AC 544 ms
22,684 KB
testcase_51 AC 572 ms
22,720 KB
testcase_52 AC 519 ms
22,524 KB
testcase_53 AC 545 ms
22,728 KB
testcase_54 AC 508 ms
22,520 KB
testcase_55 AC 539 ms
22,700 KB
testcase_56 AC 510 ms
22,452 KB
testcase_57 AC 489 ms
22,488 KB
testcase_58 AC 520 ms
22,800 KB
testcase_59 AC 448 ms
20,604 KB
testcase_60 AC 527 ms
22,744 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 2 ms
6,940 KB
testcase_63 AC 521 ms
22,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); i++)
using namespace std;
using ll = long long;
using P = pair<ll, ll>;

int main(){
	int n;
	ll k;
	cin>>n>>k;

	unordered_map<ll, ll> ma, da;

	const int mid=30;

	ll ans;
	if(n<=mid){
		ma[1]=1;
		for(int i=1; i<=n; i++){
			vector<P> al;
			for(auto p : ma){
				if((ll)i*p.first<=k) al.push_back(P((ll)i*p.first, p.second));
			}
			for(P p : al) ma[p.first]+=p.second;
		}
		ll tot=0;
		for(auto p : ma) tot+=p.second;
		ans=tot-1;
	}
	else{
		ma[1]=1;
		for(int i=1; i<=mid; i++){
			vector<P> al;
			for(auto p : ma){
				if((ll)i*p.first<=k) al.push_back(P((ll)i*p.first, p.second));
			}
			for(P p : al) ma[p.first]+=p.second;
		}

		da[k]=1;
		for(int i=mid+1; i<=n; i++){
			vector<P> al;
			for(auto p : da){
				if(p.first/i>0) al.push_back(P(p.first/i, p.second));
			}
			for(P p : al) da[p.first]+=p.second;
		}

		unordered_set<ll> kse;
		for(auto p : ma) kse.insert(p.first);
		for(auto p : da) kse.insert(p.first);
		vector<ll> kl;
		for(ll e : kse) kl.push_back(e);
		sort(kl.begin(), kl.end());

		ll c=0, tot=0;
		for(ll e : kl){
			if(ma.count(e)) c+=ma[e];
			if(da.count(e)) tot+=c*da[e];
		}
		ans=tot-1;
	}

	cout<<ans<<endl;
	return 0;
}
0