結果

問題 No.1532 Different Products
ユーザー nok0nok0
提出日時 2021-06-04 21:35:53
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3,104 ms / 4,000 ms
コード長 1,007 bytes
コンパイル時間 1,128 ms
コンパイル使用メモリ 94,080 KB
実行使用メモリ 195,236 KB
最終ジャッジ日時 2024-06-11 10:20:53
合計ジャッジ時間 85,723 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 288 ms
42,344 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 61 ms
13,344 KB
testcase_10 AC 364 ms
46,460 KB
testcase_11 AC 278 ms
42,344 KB
testcase_12 AC 1,121 ms
103,588 KB
testcase_13 AC 443 ms
50,936 KB
testcase_14 AC 2,094 ms
169,256 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 328 ms
44,924 KB
testcase_17 AC 291 ms
42,348 KB
testcase_18 AC 144 ms
24,676 KB
testcase_19 AC 1,081 ms
101,288 KB
testcase_20 AC 2,125 ms
171,944 KB
testcase_21 AC 614 ms
56,900 KB
testcase_22 AC 555 ms
58,872 KB
testcase_23 AC 194 ms
29,544 KB
testcase_24 AC 2,022 ms
164,776 KB
testcase_25 AC 901 ms
91,948 KB
testcase_26 AC 68 ms
14,240 KB
testcase_27 AC 794 ms
83,116 KB
testcase_28 AC 544 ms
58,752 KB
testcase_29 AC 494 ms
57,092 KB
testcase_30 AC 1,039 ms
101,288 KB
testcase_31 AC 1,027 ms
101,544 KB
testcase_32 AC 1,212 ms
112,304 KB
testcase_33 AC 925 ms
94,124 KB
testcase_34 AC 1,807 ms
164,652 KB
testcase_35 AC 1,170 ms
111,788 KB
testcase_36 AC 1,784 ms
164,656 KB
testcase_37 AC 282 ms
43,392 KB
testcase_38 AC 1,928 ms
164,656 KB
testcase_39 AC 1,717 ms
164,656 KB
testcase_40 AC 1,805 ms
164,656 KB
testcase_41 AC 2,520 ms
190,632 KB
testcase_42 AC 2,273 ms
174,888 KB
testcase_43 AC 2,417 ms
181,032 KB
testcase_44 AC 2,568 ms
192,804 KB
testcase_45 AC 2,634 ms
192,936 KB
testcase_46 AC 3,104 ms
188,584 KB
testcase_47 AC 2,602 ms
194,472 KB
testcase_48 AC 2,601 ms
193,056 KB
testcase_49 AC 2,639 ms
193,448 KB
testcase_50 AC 2,596 ms
192,552 KB
testcase_51 AC 2,650 ms
194,216 KB
testcase_52 AC 2,557 ms
191,396 KB
testcase_53 AC 2,581 ms
194,600 KB
testcase_54 AC 2,587 ms
191,400 KB
testcase_55 AC 2,557 ms
193,448 KB
testcase_56 AC 2,477 ms
188,456 KB
testcase_57 AC 2,435 ms
189,608 KB
testcase_58 AC 2,489 ms
192,292 KB
testcase_59 AC 2,307 ms
184,232 KB
testcase_60 AC 2,536 ms
195,236 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 2,459 ms
193,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
この問題は、TLが長いことを利用すると工夫したメモ化全探索で通すことができます
方針としては、大きい値から小さい値の順でdfsを行います
*/

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("popcnt,bmi2,fma,fma4,avx512f,avx512dq,avx512cd,avx512bw,avx512vl")
#include <iostream>
#include <unordered_map>

constexpr long long base = 10000000001;
int n;
long long res, k;
int main() {
	std::cin >> n >> k;
	std::unordered_map<long long, long long> mp;
	auto dfs = [&](auto self, long long nk, int val) -> long long {
		if(val == 0) return 1ll;

		//pairで持つとTLEしたので、適当な数を掛けてlong longひとつに状態を持たせています
		long long key = val * base + nk;
		if(mp[key]) return mp[key];

		//使わない場合と使う場合
		return mp[key] = self(self, nk, val - 1) + (nk / val ? self(self, nk / val, val - 1) : 0);
	};
	std::cout << dfs(dfs, k, n) - 1 << '\n';
	return 0;
}
0