結果

問題 No.1532 Different Products
ユーザー milanis48663220milanis48663220
提出日時 2021-06-04 22:39:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,671 bytes
コンパイル時間 1,563 ms
コンパイル使用メモリ 134,576 KB
実行使用メモリ 334,180 KB
最終ジャッジ日時 2024-04-30 10:38:31
合計ジャッジ時間 158,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 583 ms
58,108 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 16 ms
6,944 KB
testcase_09 AC 288 ms
35,632 KB
testcase_10 AC 888 ms
81,144 KB
testcase_11 AC 705 ms
67,160 KB
testcase_12 AC 2,249 ms
169,608 KB
testcase_13 AC 1,488 ms
129,056 KB
testcase_14 AC 3,939 ms
273,452 KB
testcase_15 AC 322 ms
44,492 KB
testcase_16 AC 618 ms
64,212 KB
testcase_17 AC 863 ms
78,608 KB
testcase_18 AC 773 ms
72,488 KB
testcase_19 AC 2,123 ms
164,052 KB
testcase_20 AC 3,789 ms
280,236 KB
testcase_21 AC 1,148 ms
91,088 KB
testcase_22 AC 1,395 ms
117,264 KB
testcase_23 AC 1,012 ms
94,580 KB
testcase_24 AC 3,627 ms
257,476 KB
testcase_25 AC 1,908 ms
146,100 KB
testcase_26 AC 157 ms
25,032 KB
testcase_27 AC 1,614 ms
121,936 KB
testcase_28 AC 1,215 ms
97,836 KB
testcase_29 AC 791 ms
74,500 KB
testcase_30 AC 2,288 ms
162,432 KB
testcase_31 AC 2,343 ms
167,004 KB
testcase_32 AC 2,779 ms
192,580 KB
testcase_33 AC 1,944 ms
149,208 KB
testcase_34 AC 3,293 ms
239,200 KB
testcase_35 AC 2,643 ms
192,584 KB
testcase_36 AC 3,477 ms
232,136 KB
testcase_37 AC 289 ms
39,040 KB
testcase_38 AC 3,515 ms
248,620 KB
testcase_39 AC 3,127 ms
221,452 KB
testcase_40 AC 3,093 ms
227,260 KB
testcase_41 TLE -
testcase_42 AC 3,990 ms
289,328 KB
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
6,940 KB
testcase_62 AC 2 ms
6,940 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;

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