結果

問題 No.1532 Different Products
ユーザー milanis48663220milanis48663220
提出日時 2021-06-04 21:58:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,855 bytes
コンパイル時間 1,417 ms
コンパイル使用メモリ 136,188 KB
実行使用メモリ 548,716 KB
最終ジャッジ日時 2024-11-19 14:23:03
合計ジャッジ時間 198,342 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
18,560 KB
testcase_01 AC 855 ms
89,716 KB
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 3 ms
234,548 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
269,208 KB
testcase_06 AC 4 ms
35,080 KB
testcase_07 AC 9 ms
10,496 KB
testcase_08 AC 31 ms
38,000 KB
testcase_09 AC 445 ms
351,772 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 WA -
testcase_16 AC 871 ms
123,452 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 TLE -
testcase_21 AC 1,385 ms
140,240 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 WA -
testcase_26 AC 260 ms
40,136 KB
testcase_27 AC 2,042 ms
364,404 KB
testcase_28 AC 1,697 ms
149,932 KB
testcase_29 AC 1,006 ms
313,056 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 MLE -
testcase_33 AC 3,113 ms
246,324 KB
testcase_34 TLE -
testcase_35 MLE -
testcase_36 TLE -
testcase_37 AC 460 ms
261,268 KB
testcase_38 TLE -
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<int> 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