結果

問題 No.1532 Different Products
ユーザー sapphire__15sapphire__15
提出日時 2021-06-04 21:59:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,232 ms / 4,000 ms
コード長 1,908 bytes
コンパイル時間 1,457 ms
コンパイル使用メモリ 136,136 KB
実行使用メモリ 192,436 KB
最終ジャッジ日時 2024-11-19 14:29:49
合計ジャッジ時間 76,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 337 ms
42,316 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 67 ms
12,832 KB
testcase_10 AC 444 ms
45,436 KB
testcase_11 AC 335 ms
42,348 KB
testcase_12 AC 1,115 ms
101,804 KB
testcase_13 AC 518 ms
49,404 KB
testcase_14 AC 1,917 ms
166,956 KB
testcase_15 AC 7 ms
6,816 KB
testcase_16 AC 375 ms
44,160 KB
testcase_17 AC 258 ms
30,956 KB
testcase_18 AC 177 ms
23,652 KB
testcase_19 AC 1,109 ms
99,500 KB
testcase_20 AC 1,936 ms
169,516 KB
testcase_21 AC 507 ms
55,816 KB
testcase_22 AC 608 ms
57,472 KB
testcase_23 AC 258 ms
28,524 KB
testcase_24 AC 1,810 ms
164,648 KB
testcase_25 AC 910 ms
90,396 KB
testcase_26 AC 69 ms
13,728 KB
testcase_27 AC 808 ms
82,772 KB
testcase_28 AC 554 ms
57,732 KB
testcase_29 AC 522 ms
56,200 KB
testcase_30 AC 1,033 ms
99,632 KB
testcase_31 AC 1,020 ms
100,020 KB
testcase_32 AC 1,199 ms
110,768 KB
testcase_33 AC 947 ms
92,728 KB
testcase_34 AC 1,653 ms
164,492 KB
testcase_35 AC 1,128 ms
109,876 KB
testcase_36 AC 1,577 ms
164,600 KB
testcase_37 AC 324 ms
43,020 KB
testcase_38 AC 1,696 ms
164,624 KB
testcase_39 AC 1,531 ms
164,596 KB
testcase_40 AC 1,555 ms
164,580 KB
testcase_41 AC 2,142 ms
187,820 KB
testcase_42 AC 1,941 ms
172,588 KB
testcase_43 AC 2,038 ms
178,492 KB
testcase_44 AC 2,121 ms
189,872 KB
testcase_45 AC 2,214 ms
190,256 KB
testcase_46 AC 2,106 ms
185,900 KB
testcase_47 AC 2,195 ms
191,920 KB
testcase_48 AC 2,149 ms
190,132 KB
testcase_49 AC 2,200 ms
190,768 KB
testcase_50 AC 2,120 ms
189,868 KB
testcase_51 AC 2,232 ms
191,404 KB
testcase_52 AC 2,132 ms
188,592 KB
testcase_53 AC 2,142 ms
191,792 KB
testcase_54 AC 2,112 ms
188,632 KB
testcase_55 AC 2,225 ms
190,640 KB
testcase_56 AC 2,206 ms
185,900 KB
testcase_57 AC 2,161 ms
186,928 KB
testcase_58 AC 2,205 ms
189,616 KB
testcase_59 AC 2,076 ms
181,548 KB
testcase_60 AC 2,194 ms
192,436 KB
testcase_61 AC 2 ms
6,820 KB
testcase_62 AC 2 ms
6,816 KB
testcase_63 AC 2,145 ms
190,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <map>
#include <set>
#include <queue>
#include <bitset>
#include <climits>
#include <cmath>
#include <complex>
#include <functional>
#include <cassert>
#include <stack>
#include <numeric>
#include <iomanip>
#include <limits>
#include <random>
#include <unordered_map>
#include <chrono>

typedef int64_t ll;
typedef std::pair<int, int> Pii;
typedef std::pair<ll, ll> Pll;
typedef std::pair<double, double> Pdd;

#define rip(_i, _n, _s) for (int _i = (_s); _i < (int)(_n); _i++)
#define all(_l) _l.begin(), _l.end()
#define rall(_l) _l.rbegin(), _l.rend()
#define MM << " " <<

template<typename _T>
using MaxHeap = std::priority_queue<_T>;
template<typename _T>
using MinHeap = std::priority_queue<_T, std::vector<_T>, std::greater<_T>>;

template<typename _T>
inline bool chmax(_T &_l, const _T _b) {
    if (_l < _b) {
        _l = _b;
        return true;
    }
    return false;
}
template<typename _T>
inline bool chmin(_T &_l, const _T _b) {
    if (_l > _b) {
        _l = _b;
        return true;
    }
    return false;
}

template<typename _T>
void vdeb(const std::vector<_T> &bb) {
    for (unsigned int i = 0;i < bb.size();i++) {
        if (i == bb.size() - 1) std::cout << bb[i];
        else std::cout << bb[i] << ' ';
    }
    std::cout << '\n';
}
template<typename _T>
void vdeb(const std::vector<std::vector<_T>> &bb) {
    for (unsigned int i = 0;i < bb.size();i++) {
        // std::cout << i << ' ';
        vdeb(bb[i]);
    }
    std::cout << '\n';
}

using namespace std;

int main() {
    ll n, k; cin >> n >> k;
    unordered_map<ll, ll> mp;
    auto rec = [&](auto &&f, ll x, ll y) -> ll {
        if(y == 1) return 2;
        if(mp.count(x*1000+y)) return mp[x*1000+y];
        if(x < y) return mp[x*1000+y] = f(f, x, y-1);
        return mp[x*1000+y] = f(f, x, y-1) + f(f, x/y, y-1);
    };
    cout << rec(rec, k, n)-1 << endl;
}
0