結果

問題 No.1532 Different Products
ユーザー milanis48663220milanis48663220
提出日時 2021-06-04 22:19:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,880 bytes
コンパイル時間 1,489 ms
コンパイル使用メモリ 128,812 KB
実行使用メモリ 269,840 KB
最終ジャッジ日時 2024-11-19 19:06:28
合計ジャッジ時間 246,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
93,308 KB
testcase_01 AC 2,061 ms
146,660 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
79,840 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
14,472 KB
testcase_06 AC 4 ms
49,300 KB
testcase_07 AC 9 ms
10,496 KB
testcase_08 AC 68 ms
46,304 KB
testcase_09 AC 2,308 ms
49,456 KB
testcase_10 TLE -
testcase_11 AC 3,739 ms
156,748 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 1,380 ms
140,972 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 2,552 ms
136,140 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 693 ms
109,296 KB
testcase_27 AC 3,794 ms
181,400 KB
testcase_28 AC 3,699 ms
269,840 KB
testcase_29 AC 1,330 ms
112,772 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 442 ms
168,736 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
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
10,496 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][200500];

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();
    
    vector<vector<int>> nx(m, vector<int>(n+1)); // nx[i][j] = v[i]/j
    for(int i = 0; i < m; i++){
        nx[i][1] = i;
        for(int j = 2; j <= n; j++){
            ll x = v[i]/j;
            if(x == 0) nx[i][j] = -1;
            else {
                int l = nx[i][j-1];
                while(v[l] > x) l--;
                assert(v[l] = x);
                nx[i][j] = l;
            }
        }
    }
    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