結果

問題 No.2766 Delicious Multiply Spice
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-31 22:49:18
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 747 bytes
コンパイル時間 2,815 ms
コンパイル使用メモリ 216,868 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-21 00:45:29
合計ジャッジ時間 4,291 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 8
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

map<long long, bool> memo;
map<long long, string> op;
bool dp(long long n) {
    if (memo.find(n) != memo.end()) return memo[n];
    if (n == 1) {
        memo[n] = true;
        op[n] = "";
        return true;
    }
    if ((n - 1) % 2 == 0 && dp((n - 1) / 2)) {
        memo[n] = true;
        op[n] = op[(n - 1) / 2] + "A";
        return true;
    }
    if ((n - 1) % 3 == 0 && dp((n - 1) / 3)) {
        memo[n] = true;
        op[n] = op[(n - 1) / 3] + "B";
        return true;
    }
    return false;
}
int main() {
    fast_io();
    long long n;
    cin >> n;
    assert(dp(n));
    cout << op[n] << endl;
}
0