結果

問題 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,605 ms / 4,000 ms
コード長 1,908 bytes
コンパイル時間 1,436 ms
コンパイル使用メモリ 135,344 KB
実行使用メモリ 192,300 KB
最終ジャッジ日時 2024-04-30 02:49:06
合計ジャッジ時間 85,426 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 344 ms
42,480 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 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 71 ms
12,704 KB
testcase_10 AC 437 ms
45,308 KB
testcase_11 AC 325 ms
42,308 KB
testcase_12 AC 1,100 ms
101,804 KB
testcase_13 AC 541 ms
49,404 KB
testcase_14 AC 1,853 ms
166,960 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 415 ms
44,036 KB
testcase_17 AC 314 ms
30,952 KB
testcase_18 AC 202 ms
23,660 KB
testcase_19 AC 1,150 ms
99,244 KB
testcase_20 AC 1,894 ms
169,520 KB
testcase_21 AC 545 ms
55,812 KB
testcase_22 AC 623 ms
57,464 KB
testcase_23 AC 304 ms
28,520 KB
testcase_24 AC 1,971 ms
164,760 KB
testcase_25 AC 1,048 ms
90,416 KB
testcase_26 AC 89 ms
13,732 KB
testcase_27 AC 919 ms
82,820 KB
testcase_28 AC 618 ms
57,600 KB
testcase_29 AC 597 ms
56,328 KB
testcase_30 AC 1,190 ms
99,640 KB
testcase_31 AC 1,177 ms
100,020 KB
testcase_32 AC 1,376 ms
110,640 KB
testcase_33 AC 1,050 ms
92,592 KB
testcase_34 AC 1,861 ms
164,620 KB
testcase_35 AC 1,330 ms
109,876 KB
testcase_36 AC 1,821 ms
164,588 KB
testcase_37 AC 385 ms
43,016 KB
testcase_38 AC 1,932 ms
164,652 KB
testcase_39 AC 1,731 ms
164,576 KB
testcase_40 AC 1,763 ms
164,656 KB
testcase_41 AC 2,494 ms
187,824 KB
testcase_42 AC 2,169 ms
172,592 KB
testcase_43 AC 2,067 ms
178,476 KB
testcase_44 AC 2,193 ms
189,872 KB
testcase_45 AC 2,249 ms
190,324 KB
testcase_46 AC 2,300 ms
185,904 KB
testcase_47 AC 2,309 ms
191,792 KB
testcase_48 AC 2,277 ms
190,132 KB
testcase_49 AC 2,261 ms
190,764 KB
testcase_50 AC 2,256 ms
189,868 KB
testcase_51 AC 2,605 ms
191,408 KB
testcase_52 AC 2,549 ms
188,588 KB
testcase_53 AC 2,548 ms
191,792 KB
testcase_54 AC 2,458 ms
188,720 KB
testcase_55 AC 2,595 ms
190,636 KB
testcase_56 AC 2,488 ms
185,900 KB
testcase_57 AC 2,467 ms
186,928 KB
testcase_58 AC 2,505 ms
189,484 KB
testcase_59 AC 2,383 ms
181,552 KB
testcase_60 AC 2,505 ms
192,300 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 2,502 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