結果

問題 No.473 和と積の和
ユーザー はまやんはまやんはまやんはまやん
提出日時 2017-03-15 15:21:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,112 bytes
コンパイル時間 1,568 ms
コンパイル使用メモリ 173,964 KB
実行使用メモリ 414,148 KB
最終ジャッジ日時 2024-07-03 23:56:06
合計ジャッジ時間 23,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
414,024 KB
testcase_01 AC 238 ms
413,944 KB
testcase_02 AC 136 ms
413,880 KB
testcase_03 AC 205 ms
414,148 KB
testcase_04 AC 136 ms
413,912 KB
testcase_05 AC 137 ms
413,932 KB
testcase_06 AC 137 ms
413,984 KB
testcase_07 AC 137 ms
414,084 KB
testcase_08 AC 136 ms
413,880 KB
testcase_09 AC 135 ms
413,956 KB
testcase_10 AC 135 ms
413,900 KB
testcase_11 AC 131 ms
413,980 KB
testcase_12 AC 131 ms
413,992 KB
testcase_13 AC 134 ms
414,012 KB
testcase_14 AC 138 ms
413,956 KB
testcase_15 AC 139 ms
413,896 KB
testcase_16 AC 140 ms
413,896 KB
testcase_17 AC 138 ms
413,916 KB
testcase_18 AC 137 ms
413,904 KB
testcase_19 AC 136 ms
413,956 KB
testcase_20 AC 135 ms
414,040 KB
testcase_21 AC 138 ms
413,948 KB
testcase_22 AC 137 ms
413,748 KB
testcase_23 AC 139 ms
413,900 KB
testcase_24 AC 139 ms
413,900 KB
testcase_25 TLE -
testcase_26 AC 233 ms
414,024 KB
testcase_27 AC 225 ms
414,076 KB
testcase_28 AC 139 ms
413,920 KB
testcase_29 AC 140 ms
413,904 KB
testcase_30 AC 139 ms
413,996 KB
testcase_31 AC 141 ms
413,900 KB
testcase_32 AC 137 ms
413,912 KB
testcase_33 AC 137 ms
413,884 KB
testcase_34 AC 294 ms
414,004 KB
testcase_35 AC 282 ms
414,112 KB
testcase_36 AC 136 ms
413,956 KB
testcase_37 AC 136 ms
413,816 KB
testcase_38 AC 266 ms
414,128 KB
testcase_39 AC 196 ms
413,876 KB
testcase_40 AC 206 ms
413,952 KB
testcase_41 AC 219 ms
414,036 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 129 ms
413,808 KB
testcase_46 AC 129 ms
413,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a;i<b;i++)




int N, X;
vector<int> d;
vector<int> enumdiv(int n) {
	vector<int> S;
	for (int i = 1; i*i <= n; i++) if (n%i == 0) { S.push_back(i); if (i*i != n) S.push_back(n / i); }
	sort(S.begin(), S.end());
	return S;
}
//-----------------------------------------------------------------
int memo[1020][101][1020];
int f(int n, int m, int k) { // d[m]以上の数をk個使って、積をnとする組合せ
	if (k == 0 && n == 0) return 1;
	if (k == 0) return 0;
	if (n == 0) return 0;
	if (m == d.size()) return 0;

	if (0 <= memo[m][k][n]) return memo[m][k][n];

	int ret = f(n, m + 1, k);
	int x = d[n], kk = k;
	while (x % d[m] == 0) {
		x /= d[m];
		kk--;
		int nn = lower_bound(d.begin(), d.end(), x) - d.begin();
		ret += f(nn, m + 1, kk);
		if (kk == 0) break;
	}

	return memo[m][k][n] = ret;
}
//-----------------------------------------------------------------
int main() {
	cin >> N >> X;

	d = enumdiv(X + 1);
	rep(i, 0, 1020) rep(j, 0, 101) rep(k, 0, 1020) memo[i][j][k] = -1;
	cout << f(d.size() - 1, 1, N) << endl;
}
0