結果

問題 No.2766 Delicious Multiply Spice
ユーザー t98slidert98slider
提出日時 2024-05-31 21:39:51
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 2,523 ms
コンパイル使用メモリ 207,064 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-20 22:53:11
合計ジャッジ時間 3,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 8
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll n;
    cin >> n;
    set<ll> S;
    string ans;
    auto dfs = [&](auto dfs, ll v) -> void {
        if(v == 1){
            reverse(ans.begin(), ans.end());
            cout << ans << '\n';
            exit(0);
        }
        if(S.count(v)) return;
        S.insert(v);
        if((v - 1) % 3 == 0){
            ans += 'B';
            dfs(dfs, (v - 1) / 3);
            ans.pop_back();
        }
        if((v - 1) % 2 == 0){
            ans += 'A';
            dfs(dfs, (v - 1) / 2);
            ans.pop_back();
        }
    };
    dfs(dfs, n);
}
0