結果

問題 No.1532 Different Products
ユーザー milanis48663220milanis48663220
提出日時 2021-06-04 22:04:38
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,854 bytes
コンパイル時間 4,107 ms
コンパイル使用メモリ 146,844 KB
実行使用メモリ 695,684 KB
最終ジャッジ日時 2024-11-19 14:35:25
合計ジャッジ時間 191,100 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 702 ms
275,480 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
356,528 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
361,496 KB
testcase_06 AC 4 ms
10,496 KB
testcase_07 AC 6 ms
322,968 KB
testcase_08 AC 24 ms
12,928 KB
testcase_09 AC 359 ms
375,632 KB
testcase_10 AC 1,083 ms
458,304 KB
testcase_11 AC 827 ms
100,320 KB
testcase_12 MLE -
testcase_13 AC 2,148 ms
190,448 KB
testcase_14 TLE -
testcase_15 AC 526 ms
66,196 KB
testcase_16 AC 718 ms
421,420 KB
testcase_17 AC 1,156 ms
116,884 KB
testcase_18 AC 1,079 ms
406,720 KB
testcase_19 AC 3,158 ms
248,088 KB
testcase_20 TLE -
testcase_21 AC 1,194 ms
140,108 KB
testcase_22 AC 1,855 ms
479,220 KB
testcase_23 AC 1,501 ms
141,528 KB
testcase_24 TLE -
testcase_25 AC 2,415 ms
218,544 KB
testcase_26 AC 209 ms
338,568 KB
testcase_27 AC 1,664 ms
186,192 KB
testcase_28 AC 1,507 ms
469,176 KB
testcase_29 AC 849 ms
115,204 KB
testcase_30 MLE -
testcase_31 AC 2,904 ms
251,360 KB
testcase_32 MLE -
testcase_33 AC 2,306 ms
226,136 KB
testcase_34 MLE -
testcase_35 AC 3,446 ms
289,480 KB
testcase_36 MLE -
testcase_37 AC 372 ms
62,720 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 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