結果

問題 No.1532 Different Products
ユーザー milanis48663220milanis48663220
提出日時 2021-06-04 22:41:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,965 ms / 4,000 ms
コード長 1,763 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 145,500 KB
実行使用メモリ 334,100 KB
最終ジャッジ日時 2024-06-11 14:34:53
合計ジャッジ時間 131,873 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 426 ms
58,232 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 16 ms
6,400 KB
testcase_09 AC 246 ms
35,628 KB
testcase_10 AC 687 ms
81,140 KB
testcase_11 AC 543 ms
67,164 KB
testcase_12 AC 1,789 ms
169,512 KB
testcase_13 AC 1,255 ms
129,132 KB
testcase_14 AC 3,199 ms
273,416 KB
testcase_15 AC 304 ms
44,412 KB
testcase_16 AC 530 ms
64,212 KB
testcase_17 AC 739 ms
78,612 KB
testcase_18 AC 648 ms
72,420 KB
testcase_19 AC 1,781 ms
164,104 KB
testcase_20 AC 3,161 ms
280,284 KB
testcase_21 AC 803 ms
91,212 KB
testcase_22 AC 1,083 ms
117,196 KB
testcase_23 AC 862 ms
94,548 KB
testcase_24 AC 2,898 ms
257,556 KB
testcase_25 AC 1,532 ms
146,096 KB
testcase_26 AC 144 ms
25,028 KB
testcase_27 AC 1,156 ms
122,064 KB
testcase_28 AC 841 ms
97,840 KB
testcase_29 AC 574 ms
74,628 KB
testcase_30 AC 1,703 ms
162,436 KB
testcase_31 AC 1,760 ms
166,948 KB
testcase_32 AC 2,143 ms
192,664 KB
testcase_33 AC 1,531 ms
149,212 KB
testcase_34 AC 2,723 ms
239,204 KB
testcase_35 AC 2,097 ms
192,584 KB
testcase_36 AC 2,624 ms
232,004 KB
testcase_37 AC 262 ms
39,168 KB
testcase_38 AC 2,789 ms
248,596 KB
testcase_39 AC 2,417 ms
221,452 KB
testcase_40 AC 2,465 ms
227,260 KB
testcase_41 AC 3,772 ms
324,184 KB
testcase_42 AC 3,277 ms
289,252 KB
testcase_43 AC 3,438 ms
301,228 KB
testcase_44 AC 3,904 ms
328,540 KB
testcase_45 AC 3,884 ms
329,356 KB
testcase_46 AC 3,698 ms
319,440 KB
testcase_47 AC 3,937 ms
332,840 KB
testcase_48 AC 3,884 ms
328,916 KB
testcase_49 AC 3,926 ms
330,624 KB
testcase_50 AC 3,857 ms
328,288 KB
testcase_51 AC 3,905 ms
332,020 KB
testcase_52 AC 3,886 ms
325,416 KB
testcase_53 AC 3,962 ms
333,184 KB
testcase_54 AC 3,738 ms
325,568 KB
testcase_55 AC 3,945 ms
330,132 KB
testcase_56 AC 3,772 ms
319,004 KB
testcase_57 AC 3,839 ms
321,660 KB
testcase_58 AC 3,897 ms
327,400 KB
testcase_59 AC 3,601 ms
308,916 KB
testcase_60 AC 3,965 ms
334,100 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 3,872 ms
330,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#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