結果

問題 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,454 ms
コンパイル使用メモリ 135,704 KB
実行使用メモリ 334,084 KB
最終ジャッジ日時 2024-11-20 04:45:49
合計ジャッジ時間 150,984 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 511 ms
58,236 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 17 ms
6,400 KB
testcase_09 AC 283 ms
35,504 KB
testcase_10 AC 808 ms
81,016 KB
testcase_11 AC 650 ms
67,036 KB
testcase_12 AC 2,079 ms
169,556 KB
testcase_13 AC 1,381 ms
129,084 KB
testcase_14 AC 3,710 ms
273,264 KB
testcase_15 AC 310 ms
44,436 KB
testcase_16 AC 528 ms
64,212 KB
testcase_17 AC 763 ms
78,544 KB
testcase_18 AC 662 ms
72,376 KB
testcase_19 AC 1,970 ms
164,120 KB
testcase_20 AC 3,644 ms
280,372 KB
testcase_21 AC 875 ms
91,212 KB
testcase_22 AC 1,229 ms
117,200 KB
testcase_23 AC 930 ms
94,496 KB
testcase_24 AC 3,406 ms
257,424 KB
testcase_25 AC 1,763 ms
146,096 KB
testcase_26 AC 156 ms
24,904 KB
testcase_27 AC 1,415 ms
122,064 KB
testcase_28 AC 1,103 ms
97,832 KB
testcase_29 AC 689 ms
74,696 KB
testcase_30 AC 2,023 ms
162,312 KB
testcase_31 AC 2,046 ms
167,004 KB
testcase_32 AC 2,552 ms
192,532 KB
testcase_33 AC 1,764 ms
149,204 KB
testcase_34 AC 3,189 ms
239,228 KB
testcase_35 AC 2,472 ms
192,588 KB
testcase_36 AC 3,143 ms
232,136 KB
testcase_37 AC 280 ms
39,168 KB
testcase_38 AC 3,311 ms
248,556 KB
testcase_39 AC 2,949 ms
221,336 KB
testcase_40 AC 3,001 ms
227,264 KB
testcase_41 TLE -
testcase_42 AC 3,795 ms
289,216 KB
testcase_43 AC 3,905 ms
301,264 KB
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;

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