結果

問題 No.1532 Different Products
ユーザー milanis48663220milanis48663220
提出日時 2021-06-04 21:59:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,854 bytes
コンパイル時間 1,670 ms
コンパイル使用メモリ 136,064 KB
実行使用メモリ 588,228 KB
最終ジャッジ日時 2024-11-19 14:28:01
合計ジャッジ時間 198,288 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
18,692 KB
testcase_01 AC 856 ms
89,976 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
202,928 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
277,140 KB
testcase_06 AC 4 ms
35,212 KB
testcase_07 AC 8 ms
10,496 KB
testcase_08 AC 31 ms
42,020 KB
testcase_09 AC 433 ms
54,448 KB
testcase_10 AC 1,408 ms
144,660 KB
testcase_11 AC 993 ms
100,576 KB
testcase_12 AC 3,707 ms
298,504 KB
testcase_13 MLE -
testcase_14 TLE -
testcase_15 AC 616 ms
66,196 KB
testcase_16 AC 860 ms
178,360 KB
testcase_17 AC 1,323 ms
116,880 KB
testcase_18 AC 1,301 ms
160,560 KB
testcase_19 MLE -
testcase_20 TLE -
testcase_21 AC 1,393 ms
140,236 KB
testcase_22 AC 2,332 ms
225,760 KB
testcase_23 AC 1,857 ms
141,656 KB
testcase_24 TLE -
testcase_25 MLE -
testcase_26 AC 254 ms
123,076 KB
testcase_27 AC 1,952 ms
186,448 KB
testcase_28 AC 1,662 ms
220,028 KB
testcase_29 AC 1,026 ms
115,204 KB
testcase_30 AC 3,077 ms
311,764 KB
testcase_31 AC 3,422 ms
437,276 KB
testcase_32 TLE -
testcase_33 AC 2,996 ms
397,668 KB
testcase_34 TLE -
testcase_35 MLE -
testcase_36 TLE -
testcase_37 AC 429 ms
261,772 KB
testcase_38 TLE -
testcase_39 MLE -
testcase_40 TLE -
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 TLE -
権限があれば一括ダウンロードができます

ソースコード

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();
    map<ll, int> inv = [&](){
        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