結果

問題 No.2846 Birthday Cake
ユーザー n0ma_run0ma_ru
提出日時 2024-08-24 01:50:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 1,315 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 208,388 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-08-24 01:50:34
合計ジャッジ時間 4,468 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 5 ms
6,940 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 34 ms
11,520 KB
testcase_07 AC 37 ms
11,904 KB
testcase_08 AC 37 ms
12,416 KB
testcase_09 AC 41 ms
12,800 KB
testcase_10 AC 41 ms
13,312 KB
testcase_11 AC 42 ms
13,824 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 34 ms
11,904 KB
testcase_14 AC 10 ms
6,944 KB
testcase_15 AC 25 ms
11,520 KB
testcase_16 AC 31 ms
12,416 KB
testcase_17 AC 44 ms
14,208 KB
testcase_18 AC 47 ms
14,720 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 10 ms
6,944 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 16 ms
8,064 KB
testcase_23 AC 13 ms
6,940 KB
testcase_24 AC 37 ms
12,800 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 9 ms
6,944 KB
testcase_27 AC 22 ms
10,240 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 26 ms
11,648 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 11 ms
6,940 KB
testcase_32 AC 32 ms
12,032 KB
testcase_33 AC 37 ms
12,928 KB
testcase_34 AC 24 ms
10,624 KB
testcase_35 AC 28 ms
11,520 KB
testcase_36 AC 32 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
template<class F, class S>
ostream& operator<<(ostream& os, pair<F,S>& p) {
    os << '(' << p.first << ',' << p.second << ')';
    return os;
}
template<class Iter>
void print(Iter beg, Iter end) {
    for (Iter itr = beg; itr != end; ++itr) {
        cerr << *itr << ' ';
    }
    cerr << '\n';
}
inline bool naraba(bool a, bool b) { return (!a || b); }

int K,N;

int main() {
    cin >> K >> N;

    int L = 1;
    for (int i = 1; i <= N; ++i) {
        if (i==13 || i==17 || i==19 || i==23) continue;
        L = lcm(L,i);
    }
    dbg(L)
    vector<ll> v;
    for (int i = 1; i <= N; ++i) {
        if (i==13 || i==17 || i==19 || i==23) continue;
        v.push_back(L / i);
    }

    vector dp(K+1, vector<ll>(L+1));
    dp[0][0] = 1;
    for (int i = 1; i <= K; ++i) {
        for (int j = 1; j <= L; ++j) {
            for (ll use : v) {
                if (j-use >= 0) {
                    dp[i][j] += dp[i-1][j-use];
                }
            }
        }
    }
    ll ans = dp[K][L];
    for (int i : {13,17,19,23}) {
        if (i <= N) {
            ans += (K==i);
        } else {
            break;
        }
    }
    cout << ans << '\n';
}
0