結果

問題 No.1532 Different Products
ユーザー sten_sansten_san
提出日時 2021-06-04 22:44:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,058 ms / 4,000 ms
コード長 1,622 bytes
コンパイル時間 2,645 ms
コンパイル使用メモリ 221,168 KB
実行使用メモリ 67,944 KB
最終ジャッジ日時 2024-04-30 10:56:11
合計ジャッジ時間 39,106 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 188 ms
15,332 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 54 ms
7,160 KB
testcase_10 AC 229 ms
17,400 KB
testcase_11 AC 176 ms
13,616 KB
testcase_12 AC 538 ms
35,628 KB
testcase_13 AC 281 ms
21,828 KB
testcase_14 AC 860 ms
53,624 KB
testcase_15 AC 9 ms
6,944 KB
testcase_16 AC 219 ms
16,776 KB
testcase_17 AC 177 ms
13,196 KB
testcase_18 AC 117 ms
11,268 KB
testcase_19 AC 527 ms
34,436 KB
testcase_20 AC 869 ms
55,120 KB
testcase_21 AC 305 ms
19,916 KB
testcase_22 AC 345 ms
24,876 KB
testcase_23 AC 160 ms
13,836 KB
testcase_24 AC 802 ms
51,076 KB
testcase_25 AC 462 ms
32,304 KB
testcase_26 AC 60 ms
7,420 KB
testcase_27 AC 411 ms
27,588 KB
testcase_28 AC 310 ms
22,356 KB
testcase_29 AC 317 ms
21,224 KB
testcase_30 AC 568 ms
35,680 KB
testcase_31 AC 563 ms
35,784 KB
testcase_32 AC 629 ms
39,044 KB
testcase_33 AC 491 ms
33,460 KB
testcase_34 AC 755 ms
44,860 KB
testcase_35 AC 613 ms
38,580 KB
testcase_36 AC 745 ms
42,716 KB
testcase_37 AC 200 ms
14,592 KB
testcase_38 AC 800 ms
48,152 KB
testcase_39 AC 708 ms
41,692 KB
testcase_40 AC 712 ms
41,872 KB
testcase_41 AC 1,011 ms
62,760 KB
testcase_42 AC 894 ms
56,324 KB
testcase_43 AC 988 ms
58,928 KB
testcase_44 AC 1,053 ms
66,696 KB
testcase_45 AC 1,042 ms
66,760 KB
testcase_46 AC 1,004 ms
61,480 KB
testcase_47 AC 1,051 ms
67,772 KB
testcase_48 AC 1,030 ms
66,760 KB
testcase_49 AC 1,058 ms
67,024 KB
testcase_50 AC 1,041 ms
66,816 KB
testcase_51 AC 1,049 ms
67,532 KB
testcase_52 AC 1,023 ms
66,432 KB
testcase_53 AC 1,053 ms
67,944 KB
testcase_54 AC 1,033 ms
66,432 KB
testcase_55 AC 1,043 ms
66,896 KB
testcase_56 AC 990 ms
61,488 KB
testcase_57 AC 994 ms
62,428 KB
testcase_58 AC 1,021 ms
66,692 KB
testcase_59 AC 958 ms
60,328 KB
testcase_60 AC 1,047 ms
67,816 KB
testcase_61 AC 1 ms
6,944 KB
testcase_62 AC 2 ms
6,940 KB
testcase_63 AC 1,032 ms
66,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct iofast_t {
    iofast_t() {
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
    }
} iofast;

struct uns_t {} uns;
template <typename Element, typename Head, typename ...Args>
auto vec(Element init, Head arg, Args ...args) {
    if constexpr (sizeof...(Args) == 0) return std::vector(arg, init);
    else return std::vector(arg, vec(init, args...));
}
template <typename Element, typename Head, typename ...Args>
auto vec(uns_t, Head arg, Args ...args) {
    return vec(Element(), arg, args...);
}

template <typename T, typename Compare = less<T>>
T &chmin(T &l, T r, Compare &&f = less<T>()) { return l = min(l, r, f); }
template <typename T, typename Compare = less<T>>
T &chmax(T &l, T r, Compare &&f = less<T>()) { return l = max(l, r, f); }

int main() {
    int64_t n, k; cin >> n >> k;

    auto update = vec<int64_t>(uns, n + 1, 0);

    update[n].push_back(k);
    for (int i = n; 0 < i; --i) {
        auto s = vec<int64_t>(uns, 0);
        for (auto v : update[i]) {
            s.push_back(v);
            s.push_back(v / i);
        }

        sort(begin(s), end(s));
        s.erase(unique(begin(s), end(s)), end(s));

        for (auto v : s) {
            update[i - 1].push_back(v);
        }
    }

    unordered_map<int64_t, int64_t> dp1;
    for (auto v : update[0]) {
        dp1[v] = 0 < v;
    }

    for (int i = 1; i <= n; ++i) {
        unordered_map<int64_t, int64_t> dp2;
        for (auto v : update[i]) {
            dp2[v] = dp1[v] + dp1[v / i];
        }
        swap(dp1, dp2);
    }

    cout << dp1[k] - 1 << endl;
}

0