結果

問題 No.1532 Different Products
ユーザー milanis48663220milanis48663220
提出日時 2021-06-04 22:49:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,869 ms / 4,000 ms
コード長 1,688 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 144,560 KB
実行使用メモリ 330,960 KB
最終ジャッジ日時 2024-12-20 09:44:10
合計ジャッジ時間 91,554 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 317 ms
56,612 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 5 ms
6,816 KB
testcase_08 AC 15 ms
6,816 KB
testcase_09 AC 179 ms
33,324 KB
testcase_10 AC 452 ms
77,384 KB
testcase_11 AC 356 ms
65,016 KB
testcase_12 AC 1,143 ms
165,872 KB
testcase_13 AC 821 ms
124,784 KB
testcase_14 AC 2,041 ms
269,584 KB
testcase_15 AC 221 ms
41,832 KB
testcase_16 AC 392 ms
63,488 KB
testcase_17 AC 514 ms
74,436 KB
testcase_18 AC 429 ms
68,828 KB
testcase_19 AC 1,091 ms
160,356 KB
testcase_20 AC 2,032 ms
276,196 KB
testcase_21 AC 550 ms
89,692 KB
testcase_22 AC 716 ms
112,680 KB
testcase_23 AC 565 ms
91,944 KB
testcase_24 AC 2,050 ms
252,208 KB
testcase_25 AC 981 ms
142,124 KB
testcase_26 AC 120 ms
23,876 KB
testcase_27 AC 778 ms
120,180 KB
testcase_28 AC 629 ms
96,156 KB
testcase_29 AC 450 ms
74,072 KB
testcase_30 AC 1,060 ms
160,964 KB
testcase_31 AC 1,124 ms
163,388 KB
testcase_32 AC 1,378 ms
189,588 KB
testcase_33 AC 955 ms
147,836 KB
testcase_34 AC 1,644 ms
235,520 KB
testcase_35 AC 1,319 ms
188,548 KB
testcase_36 AC 1,608 ms
228,684 KB
testcase_37 AC 218 ms
38,852 KB
testcase_38 AC 1,793 ms
244,972 KB
testcase_39 AC 1,528 ms
217,984 KB
testcase_40 AC 1,846 ms
222,764 KB
testcase_41 AC 2,566 ms
321,196 KB
testcase_42 AC 2,247 ms
285,232 KB
testcase_43 AC 2,344 ms
298,452 KB
testcase_44 AC 2,617 ms
325,472 KB
testcase_45 AC 2,821 ms
326,264 KB
testcase_46 AC 2,696 ms
316,444 KB
testcase_47 AC 2,858 ms
329,864 KB
testcase_48 AC 2,869 ms
325,916 KB
testcase_49 AC 2,796 ms
327,636 KB
testcase_50 AC 2,857 ms
325,228 KB
testcase_51 AC 2,830 ms
328,576 KB
testcase_52 AC 2,822 ms
322,360 KB
testcase_53 AC 2,847 ms
330,068 KB
testcase_54 AC 2,780 ms
322,560 KB
testcase_55 AC 2,653 ms
327,176 KB
testcase_56 AC 2,628 ms
316,164 KB
testcase_57 AC 2,610 ms
318,644 KB
testcase_58 AC 2,656 ms
324,252 KB
testcase_59 AC 2,394 ms
306,200 KB
testcase_60 AC 2,693 ms
330,960 KB
testcase_61 AC 2 ms
6,816 KB
testcase_62 AC 2 ms
6,820 KB
testcase_63 AC 2,611 ms
326,996 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)); // nx[i][j] = v[i]/j
    dp[(m-1)*(n+1)+n] = 1;
    for(int i = n; i >= 1; i--){
        for(int j = 0; j < m; j++){
            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