結果

問題 No.1532 Different Products
ユーザー milanis48663220milanis48663220
提出日時 2021-06-04 22:54:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,704 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 142,264 KB
実行使用メモリ 239,040 KB
最終ジャッジ日時 2024-11-20 05:54:40
合計ジャッジ時間 30,572 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 135 ms
49,144 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 1 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 8 ms
6,144 KB
testcase_09 AC 77 ms
28,464 KB
testcase_10 AC 194 ms
65,272 KB
testcase_11 AC 160 ms
56,156 KB
testcase_12 AC 429 ms
128,000 KB
testcase_13 AC 300 ms
97,524 KB
testcase_14 AC 723 ms
199,344 KB
testcase_15 AC 95 ms
24,980 KB
testcase_16 AC 158 ms
55,636 KB
testcase_17 AC 183 ms
61,076 KB
testcase_18 AC 161 ms
54,240 KB
testcase_19 AC 421 ms
125,212 KB
testcase_20 AC 724 ms
204,080 KB
testcase_21 AC 220 ms
75,600 KB
testcase_22 AC 305 ms
90,828 KB
testcase_23 AC 226 ms
70,748 KB
testcase_24 AC 671 ms
187,668 KB
testcase_25 AC 369 ms
113,072 KB
testcase_26 AC 56 ms
22,212 KB
testcase_27 AC 314 ms
99,024 KB
testcase_28 AC 237 ms
79,788 KB
testcase_29 AC 203 ms
65,028 KB
testcase_30 AC 406 ms
128,904 KB
testcase_31 AC 411 ms
129,124 KB
testcase_32 AC 485 ms
147,352 KB
testcase_33 AC 370 ms
117,980 KB
testcase_34 AC 619 ms
175,716 KB
testcase_35 AC 480 ms
146,244 KB
testcase_36 AC 592 ms
173,644 KB
testcase_37 AC 110 ms
35,840 KB
testcase_38 AC 612 ms
183,276 KB
testcase_39 AC 531 ms
165,132 KB
testcase_40 AC 590 ms
167,808 KB
testcase_41 AC 817 ms
231,700 KB
testcase_42 AC 701 ms
209,180 KB
testcase_43 AC 747 ms
218,188 KB
testcase_44 AC 788 ms
236,828 KB
testcase_45 AC 797 ms
237,432 KB
testcase_46 AC 775 ms
231,008 KB
testcase_47 RE -
testcase_48 AC 812 ms
237,164 KB
testcase_49 AC 787 ms
237,984 KB
testcase_50 AC 795 ms
236,636 KB
testcase_51 AC 797 ms
239,040 KB
testcase_52 AC 794 ms
235,016 KB
testcase_53 RE -
testcase_54 AC 806 ms
234,900 KB
testcase_55 AC 825 ms
237,844 KB
testcase_56 AC 769 ms
230,992 KB
testcase_57 AC 790 ms
232,348 KB
testcase_58 AC 849 ms
236,096 KB
testcase_59 AC 790 ms
224,184 KB
testcase_60 RE -
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 827 ms
237,456 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;
}

ll dp[40000500];

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;
    }();
    
    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