結果

問題 No.1532 Different Products
ユーザー milanis48663220milanis48663220
提出日時 2021-06-04 22:49:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,688 bytes
コンパイル時間 2,445 ms
コンパイル使用メモリ 144,068 KB
実行使用メモリ 329,800 KB
最終ジャッジ日時 2024-05-14 01:05:21
合計ジャッジ時間 84,107 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 477 ms
56,556 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 15 ms
6,940 KB
testcase_09 AC 271 ms
33,244 KB
testcase_10 AC 738 ms
77,404 KB
testcase_11 AC 583 ms
65,112 KB
testcase_12 AC 1,800 ms
165,812 KB
testcase_13 AC 1,227 ms
124,948 KB
testcase_14 AC 3,257 ms
269,788 KB
testcase_15 AC 317 ms
41,852 KB
testcase_16 AC 561 ms
63,420 KB
testcase_17 AC 719 ms
74,572 KB
testcase_18 AC 644 ms
68,904 KB
testcase_19 AC 1,741 ms
160,344 KB
testcase_20 AC 3,136 ms
276,232 KB
testcase_21 AC 817 ms
89,660 KB
testcase_22 AC 1,024 ms
112,672 KB
testcase_23 AC 806 ms
91,908 KB
testcase_24 AC 2,893 ms
252,480 KB
testcase_25 AC 1,426 ms
142,072 KB
testcase_26 AC 133 ms
23,832 KB
testcase_27 AC 1,178 ms
120,120 KB
testcase_28 AC 861 ms
95,992 KB
testcase_29 AC 522 ms
74,036 KB
testcase_30 AC 1,813 ms
161,072 KB
testcase_31 AC 1,828 ms
163,564 KB
testcase_32 AC 2,029 ms
189,612 KB
testcase_33 AC 1,369 ms
147,820 KB
testcase_34 AC 2,603 ms
235,748 KB
testcase_35 AC 1,901 ms
188,680 KB
testcase_36 AC 2,431 ms
228,744 KB
testcase_37 AC 226 ms
39,152 KB
testcase_38 AC 2,798 ms
244,952 KB
testcase_39 AC 2,403 ms
218,008 KB
testcase_40 AC 2,449 ms
222,800 KB
testcase_41 AC 3,730 ms
321,200 KB
testcase_42 AC 3,371 ms
285,284 KB
testcase_43 AC 3,430 ms
298,468 KB
testcase_44 AC 3,751 ms
325,624 KB
testcase_45 AC 3,705 ms
326,508 KB
testcase_46 AC 3,710 ms
316,544 KB
testcase_47 AC 3,767 ms
329,800 KB
testcase_48 AC 3,839 ms
325,912 KB
testcase_49 AC 3,993 ms
327,748 KB
testcase_50 AC 3,949 ms
325,496 KB
testcase_51 TLE -
testcase_52 AC 3,957 ms
322,496 KB
testcase_53 TLE -
testcase_54 AC 3,922 ms
322,828 KB
testcase_55 AC 3,938 ms
327,024 KB
testcase_56 AC 3,822 ms
316,300 KB
testcase_57 AC 3,835 ms
318,652 KB
testcase_58 AC 3,985 ms
324,408 KB
testcase_59 AC 3,752 ms
306,104 KB
testcase_60 TLE -
testcase_61 AC 2 ms
6,944 KB
testcase_62 AC 3 ms
6,948 KB
testcase_63 TLE -
権限があれば一括ダウンロードができます

ソースコード

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