結果

問題 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,277 ms / 4,000 ms
コード長 1,622 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 219,436 KB
実行使用メモリ 67,820 KB
最終ジャッジ日時 2024-11-20 05:04:20
合計ジャッジ時間 45,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 204 ms
15,456 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 61 ms
7,032 KB
testcase_10 AC 261 ms
17,400 KB
testcase_11 AC 194 ms
13,744 KB
testcase_12 AC 621 ms
35,628 KB
testcase_13 AC 321 ms
21,832 KB
testcase_14 AC 990 ms
53,624 KB
testcase_15 AC 9 ms
5,248 KB
testcase_16 AC 244 ms
16,780 KB
testcase_17 AC 198 ms
13,192 KB
testcase_18 AC 134 ms
11,140 KB
testcase_19 AC 597 ms
34,312 KB
testcase_20 AC 1,015 ms
55,124 KB
testcase_21 AC 340 ms
20,044 KB
testcase_22 AC 380 ms
24,748 KB
testcase_23 AC 176 ms
13,836 KB
testcase_24 AC 922 ms
51,076 KB
testcase_25 AC 531 ms
32,308 KB
testcase_26 AC 69 ms
7,420 KB
testcase_27 AC 462 ms
27,584 KB
testcase_28 AC 351 ms
22,360 KB
testcase_29 AC 348 ms
21,220 KB
testcase_30 AC 622 ms
35,680 KB
testcase_31 AC 621 ms
35,908 KB
testcase_32 AC 708 ms
38,916 KB
testcase_33 AC 556 ms
33,584 KB
testcase_34 AC 853 ms
44,732 KB
testcase_35 AC 697 ms
38,580 KB
testcase_36 AC 836 ms
42,712 KB
testcase_37 AC 218 ms
14,592 KB
testcase_38 AC 884 ms
48,152 KB
testcase_39 AC 793 ms
41,532 KB
testcase_40 AC 809 ms
41,744 KB
testcase_41 AC 1,186 ms
62,760 KB
testcase_42 AC 1,034 ms
56,200 KB
testcase_43 AC 1,084 ms
58,800 KB
testcase_44 AC 1,209 ms
66,688 KB
testcase_45 AC 1,213 ms
66,760 KB
testcase_46 AC 1,166 ms
61,480 KB
testcase_47 AC 1,261 ms
67,696 KB
testcase_48 AC 1,197 ms
66,888 KB
testcase_49 AC 1,241 ms
66,900 KB
testcase_50 AC 1,236 ms
66,688 KB
testcase_51 AC 1,258 ms
67,408 KB
testcase_52 AC 1,200 ms
66,428 KB
testcase_53 AC 1,277 ms
67,820 KB
testcase_54 AC 1,196 ms
66,432 KB
testcase_55 AC 1,220 ms
66,944 KB
testcase_56 AC 1,157 ms
61,484 KB
testcase_57 AC 1,170 ms
62,300 KB
testcase_58 AC 1,206 ms
66,684 KB
testcase_59 AC 1,124 ms
60,328 KB
testcase_60 AC 1,226 ms
67,820 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 1,229 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