結果

問題 No.1532 Different Products
ユーザー spipipikespipipike
提出日時 2021-06-04 22:51:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 493 ms / 4,000 ms
コード長 1,235 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 189,656 KB
実行使用メモリ 22,728 KB
最終ジャッジ日時 2024-11-20 05:28:53
合計ジャッジ時間 19,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 87 ms
12,524 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 64 ms
11,380 KB
testcase_10 AC 106 ms
14,716 KB
testcase_11 AC 88 ms
14,216 KB
testcase_12 AC 198 ms
18,616 KB
testcase_13 AC 125 ms
17,436 KB
testcase_14 AC 342 ms
19,744 KB
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 88 ms
11,148 KB
testcase_17 AC 98 ms
14,492 KB
testcase_18 AC 95 ms
14,728 KB
testcase_19 AC 196 ms
18,596 KB
testcase_20 AC 382 ms
20,208 KB
testcase_21 AC 138 ms
12,972 KB
testcase_22 AC 133 ms
16,260 KB
testcase_23 AC 110 ms
15,604 KB
testcase_24 AC 333 ms
19,880 KB
testcase_25 AC 176 ms
16,424 KB
testcase_26 AC 49 ms
9,560 KB
testcase_27 AC 160 ms
13,820 KB
testcase_28 AC 131 ms
13,764 KB
testcase_29 AC 109 ms
11,128 KB
testcase_30 AC 206 ms
15,640 KB
testcase_31 AC 219 ms
15,776 KB
testcase_32 AC 273 ms
16,532 KB
testcase_33 AC 195 ms
15,336 KB
testcase_34 AC 311 ms
19,168 KB
testcase_35 AC 266 ms
17,568 KB
testcase_36 AC 306 ms
18,524 KB
testcase_37 AC 71 ms
9,056 KB
testcase_38 AC 363 ms
19,312 KB
testcase_39 AC 288 ms
18,324 KB
testcase_40 AC 357 ms
18,548 KB
testcase_41 AC 460 ms
22,680 KB
testcase_42 AC 384 ms
20,140 KB
testcase_43 AC 378 ms
20,476 KB
testcase_44 AC 481 ms
22,680 KB
testcase_45 AC 471 ms
22,688 KB
testcase_46 AC 469 ms
22,456 KB
testcase_47 AC 480 ms
22,724 KB
testcase_48 AC 480 ms
22,688 KB
testcase_49 AC 480 ms
22,704 KB
testcase_50 AC 472 ms
22,684 KB
testcase_51 AC 493 ms
22,720 KB
testcase_52 AC 455 ms
22,524 KB
testcase_53 AC 471 ms
22,728 KB
testcase_54 AC 469 ms
22,396 KB
testcase_55 AC 466 ms
22,700 KB
testcase_56 AC 457 ms
22,404 KB
testcase_57 AC 460 ms
22,484 KB
testcase_58 AC 479 ms
22,668 KB
testcase_59 AC 419 ms
20,476 KB
testcase_60 AC 492 ms
22,620 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 476 ms
22,564 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