結果

問題 No.473 和と積の和
ユーザー imulanimulan
提出日時 2017-05-17 03:54:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,097 bytes
コンパイル時間 1,803 ms
コンパイル使用メモリ 181,228 KB
実行使用メモリ 298,044 KB
最終ジャッジ日時 2023-10-17 13:00:42
合計ジャッジ時間 8,743 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 1,235 ms
108,844 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 1 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 2 ms
4,348 KB
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 2 ms
4,348 KB
testcase_22 AC 2 ms
4,348 KB
testcase_23 AC 11 ms
4,912 KB
testcase_24 AC 15 ms
5,544 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define fi first
#define se second

using pi = pair<int,int>;
using P = pair<pi,int>;

int n;
ll x;

int D;
vector<int> d;

void factor()
{
    int X=x+1;
    d.pb(X);
    for(int i=2; i*i<=X; ++i)
    {
        if(X%i==0)
        {
            d.pb(i);
            d.pb(X/i);
        }
    }
    sort(all(d));
    d.erase(unique(all(d)),d.end());

    D = d.size();
}

map<P,int> dp;
int f(int rem, int didx, int val)
{
    if(didx==D) return (rem==0 && val==1);
    if(d[didx]>val)
    {
        if(rem==0) return (val==1);
        return 0;
    }

    P p = P(pi(rem,didx),val);
    if(dp.count(p)) return dp[p];

    int ret=0;
    ll div=1;
    for(int i=0; i<=rem; ++i)
    {
        if(val%div==0) ret += f(rem-i, didx+1, val/div);
        else break;

        div *= d[didx];
    }

    dp[p] = ret;
    return ret;
}

int main()
{
    cin >>n >>x;
    factor();

    cout << f(n,0,x+1) << endl;
    return 0;
}
0