結果

問題 No.1532 Different Products
ユーザー milanis48663220milanis48663220
提出日時 2021-06-04 22:10:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
(最新)
TLE  
(最初)
実行時間 -
コード長 1,966 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 149,332 KB
実行使用メモリ 529,276 KB
最終ジャッジ日時 2024-11-19 15:00:50
合計ジャッジ時間 147,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 443 ms
171,088 KB
testcase_02 AC 9 ms
40,560 KB
testcase_03 AC 4 ms
15,732 KB
testcase_04 AC 6 ms
25,956 KB
testcase_05 AC 3 ms
9,700 KB
testcase_06 AC 7 ms
28,360 KB
testcase_07 AC 12 ms
40,804 KB
testcase_08 AC 23 ms
46,432 KB
testcase_09 AC 206 ms
118,916 KB
testcase_10 AC 610 ms
188,932 KB
testcase_11 AC 476 ms
170,736 KB
testcase_12 AC 1,978 ms
304,000 KB
testcase_13 AC 1,243 ms
225,192 KB
testcase_14 AC 3,178 ms
453,608 KB
testcase_15 AC 223 ms
76,512 KB
testcase_16 AC 536 ms
187,580 KB
testcase_17 AC 579 ms
177,168 KB
testcase_18 AC 534 ms
158,760 KB
testcase_19 AC 2,065 ms
291,780 KB
testcase_20 AC 3,958 ms
453,192 KB
testcase_21 AC 837 ms
220,552 KB
testcase_22 AC 1,105 ms
224,744 KB
testcase_23 AC 691 ms
178,464 KB
testcase_24 AC 3,854 ms
424,500 KB
testcase_25 AC 1,420 ms
277,972 KB
testcase_26 AC 146 ms
131,460 KB
testcase_27 AC 1,231 ms
262,932 KB
testcase_28 AC 950 ms
224,272 KB
testcase_29 AC 630 ms
205,396 KB
testcase_30 AC 1,453 ms
313,768 KB
testcase_31 AC 1,641 ms
317,924 KB
testcase_32 AC 1,761 ms
351,532 KB
testcase_33 AC 1,397 ms
296,468 KB
testcase_34 AC 3,098 ms
407,556 KB
testcase_35 AC 2,336 ms
349,252 KB
testcase_36 AC 2,713 ms
400,504 KB
testcase_37 AC 314 ms
158,952 KB
testcase_38 AC 3,269 ms
420,388 KB
testcase_39 AC 2,554 ms
385,188 KB
testcase_40 AC 2,853 ms
391,592 KB
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 AC 3,960 ms
497,684 KB
testcase_60 TLE -
testcase_61 AC 3 ms
7,648 KB
testcase_62 AC 3 ms
7,520 KB
testcase_63 MLE -
権限があれば一括ダウンロードができます

ソースコード

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;

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();
    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<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