結果

問題 No.1532 Different Products
ユーザー sten_sansten_san
提出日時 2021-06-04 22:37:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,592 bytes
コンパイル時間 2,508 ms
コンパイル使用メモリ 222,092 KB
実行使用メモリ 701,768 KB
最終ジャッジ日時 2024-11-20 04:30:30
合計ジャッジ時間 155,049 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 720 ms
66,912 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 6 ms
5,248 KB
testcase_08 AC 11 ms
5,248 KB
testcase_09 AC 179 ms
21,244 KB
testcase_10 AC 873 ms
80,760 KB
testcase_11 AC 649 ms
59,824 KB
testcase_12 AC 2,265 ms
188,716 KB
testcase_13 AC 1,020 ms
92,744 KB
testcase_14 AC 3,864 ms
291,704 KB
testcase_15 AC 20 ms
5,760 KB
testcase_16 AC 827 ms
76,428 KB
testcase_17 AC 631 ms
59,276 KB
testcase_18 AC 411 ms
42,248 KB
testcase_19 AC 2,171 ms
183,032 KB
testcase_20 AC 3,737 ms
298,052 KB
testcase_21 AC 1,215 ms
104,268 KB
testcase_22 AC 1,261 ms
111,532 KB
testcase_23 AC 560 ms
54,792 KB
testcase_24 AC 3,421 ms
276,612 KB
testcase_25 AC 1,928 ms
161,968 KB
testcase_26 AC 207 ms
23,544 KB
testcase_27 AC 1,675 ms
141,120 KB
testcase_28 AC 1,244 ms
110,548 KB
testcase_29 AC 1,196 ms
105,192 KB
testcase_30 AC 2,205 ms
183,648 KB
testcase_31 AC 2,198 ms
184,772 KB
testcase_32 AC 2,541 ms
209,664 KB
testcase_33 AC 1,987 ms
167,208 KB
testcase_34 AC 3,164 ms
252,344 KB
testcase_35 AC 2,549 ms
207,796 KB
testcase_36 AC 3,069 ms
246,740 KB
testcase_37 AC 781 ms
72,064 KB
testcase_38 AC 3,395 ms
265,240 KB
testcase_39 AC 2,891 ms
234,460 KB
testcase_40 AC 3,070 ms
239,636 KB
testcase_41 TLE -
testcase_42 AC 3,875 ms
305,412 KB
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
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 MLE -
権限があれば一括ダウンロードができます

ソースコード

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);
        }
    }

    map<tuple<int, int64_t>, int64_t> dp;
    for (auto v : update[0]) {
        dp[{ 0, v }] = 0 < v;
    }

    for (int i = 1; i <= n; ++i) {
        for (auto v : update[i]) {
            dp[{ i, v }] = dp[{ i - 1, v }] + dp[{ i - 1, v / i }];
        }
    }

    cout << dp[{ n, k }] - 1 << endl;
}

0