結果

問題 No.1532 Different Products
ユーザー milanis48663220milanis48663220
提出日時 2021-06-04 22:07:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
(最新)
TLE  
(最初)
実行時間 -
コード長 1,874 bytes
コンパイル時間 1,628 ms
コンパイル使用メモリ 135,468 KB
実行使用メモリ 1,071,784 KB
最終ジャッジ日時 2024-11-19 14:50:43
合計ジャッジ時間 162,862 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 MLE -
testcase_02 AC 3 ms
5,248 KB
testcase_03 MLE -
testcase_04 AC 2 ms
5,248 KB
testcase_05 MLE -
testcase_06 AC 3 ms
5,248 KB
testcase_07 MLE -
testcase_08 AC 18 ms
7,680 KB
testcase_09 MLE -
testcase_10 AC 763 ms
114,804 KB
testcase_11 MLE -
testcase_12 AC 2,428 ms
247,932 KB
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 565 ms
93,012 KB
testcase_17 MLE -
testcase_18 AC 684 ms
101,856 KB
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 1,315 ms
166,096 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 AC 165 ms
33,732 KB
testcase_27 MLE -
testcase_28 AC 1,060 ms
142,764 KB
testcase_29 AC 647 ms
109,444 KB
testcase_30 AC 2,031 ms
238,472 KB
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 AC 296 ms
57,088 KB
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;

ll dp[205][300000];

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<vector<int>> nx(m, vector<int>(n+1)); // nx[i][j] = v[i]/j
    for(int i = 0; i < m; i++){
        for(int j = 1; j <= n; j++){
            ll x = v[i]/j;
            if(x == 0) nx[i][j] = -1;
            else nx[i][j] = inv[x];
        }
    }
    dp[n][m-1] = 1;
    for(int i = n; i >= 1; i--){
        for(int j = 0; j < m; j++){
            dp[i-1][j] += dp[i][j];
            int k = nx[j][i];
            if(k == -1) continue;
            dp[i-1][k] += dp[i][j];
        }
        // for(int j = 0; j < m; j++) cout << dp[i-1][j] << ' ';
        // cout << endl;
    }
    ll ans = 0;
    for(int i = 0; i < m; i++) ans += dp[0][i];
    cout << ans-1 << endl;
}
0