結果

問題 No.1532 Different Products
ユーザー milanis48663220milanis48663220
提出日時 2021-06-04 22:56:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,200 ms / 4,000 ms
コード長 1,711 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 144,720 KB
実行使用メモリ 331,144 KB
最終ジャッジ日時 2024-11-15 05:14:14
合計ジャッジ時間 42,189 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 137 ms
56,580 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 4 ms
5,248 KB
testcase_08 AC 9 ms
6,272 KB
testcase_09 AC 84 ms
33,204 KB
testcase_10 AC 239 ms
77,308 KB
testcase_11 AC 187 ms
65,076 KB
testcase_12 AC 562 ms
166,020 KB
testcase_13 AC 381 ms
124,912 KB
testcase_14 AC 980 ms
269,584 KB
testcase_15 AC 124 ms
41,648 KB
testcase_16 AC 152 ms
63,540 KB
testcase_17 AC 201 ms
74,512 KB
testcase_18 AC 194 ms
68,960 KB
testcase_19 AC 543 ms
160,348 KB
testcase_20 AC 955 ms
276,180 KB
testcase_21 AC 242 ms
89,676 KB
testcase_22 AC 350 ms
112,692 KB
testcase_23 AC 265 ms
91,860 KB
testcase_24 AC 897 ms
252,304 KB
testcase_25 AC 448 ms
142,108 KB
testcase_26 AC 55 ms
23,728 KB
testcase_27 AC 334 ms
120,176 KB
testcase_28 AC 251 ms
96,036 KB
testcase_29 AC 217 ms
74,044 KB
testcase_30 AC 475 ms
161,028 KB
testcase_31 AC 478 ms
163,416 KB
testcase_32 AC 608 ms
189,636 KB
testcase_33 AC 450 ms
147,840 KB
testcase_34 AC 755 ms
235,616 KB
testcase_35 AC 580 ms
188,488 KB
testcase_36 AC 759 ms
228,760 KB
testcase_37 AC 109 ms
38,820 KB
testcase_38 AC 801 ms
244,968 KB
testcase_39 AC 710 ms
218,000 KB
testcase_40 AC 789 ms
222,676 KB
testcase_41 AC 1,122 ms
321,224 KB
testcase_42 AC 950 ms
285,272 KB
testcase_43 AC 1,040 ms
298,448 KB
testcase_44 AC 1,192 ms
325,504 KB
testcase_45 AC 1,200 ms
326,320 KB
testcase_46 AC 1,129 ms
316,512 KB
testcase_47 AC 1,151 ms
329,784 KB
testcase_48 AC 1,139 ms
325,868 KB
testcase_49 AC 1,186 ms
327,520 KB
testcase_50 AC 1,190 ms
325,192 KB
testcase_51 AC 1,158 ms
328,764 KB
testcase_52 AC 1,141 ms
322,440 KB
testcase_53 AC 1,129 ms
329,988 KB
testcase_54 AC 1,092 ms
322,704 KB
testcase_55 AC 1,191 ms
327,212 KB
testcase_56 AC 1,075 ms
316,152 KB
testcase_57 AC 1,108 ms
318,652 KB
testcase_58 AC 1,124 ms
324,412 KB
testcase_59 AC 1,033 ms
306,260 KB
testcase_60 AC 1,130 ms
331,144 KB
testcase_61 AC 2 ms
6,816 KB
testcase_62 AC 2 ms
6,820 KB
testcase_63 AC 1,138 ms
327,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

vector<ll> calc(ll k){
    set<ll> st;
    for(ll i = 1; i*i <= k; i++){
        st.insert(i);
        st.insert(k/i);
    }
    vector<ll> ans;
    for(ll x: st) ans.push_back(x);
    return ans;
}


int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n; ll k; cin >> n >> k;
    auto v = calc(k);
    int m = v.size();

    unordered_map<ll, int> inv = [&](){
        unordered_map<ll, int> ans;
        for(int i = 0; i < m; i++) ans[v[i]] = i;
        return ans;
    }();
    vector<ll> dp(m*(n+1)); 
    dp[(m-1)*(n+1)+n] = 1;
    for(int i = n; i >= 1; i--){
        for(int j = 0; j < m; j++){
            if(dp[j*(n+1)+i] == 0) continue;
            dp[j*(n+1)+i-1] +=  dp[j*(n+1)+i];
            ll x = v[j]/i;
            if(x == 0) continue;
            dp[inv[x]*(n+1)+i-1] +=  dp[j*(n+1)+i];
        }
    }

    ll ans = 0;
    for(int j = 0; j < m; j++) ans += dp[j*(n+1)+0];
    cout << ans-1 << endl;
}
0