結果

問題 No.2766 Delicious Multiply Spice
ユーザー ypwwypww
提出日時 2024-05-31 22:04:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,297 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 99,984 KB
実行使用メモリ 254,556 KB
最終ジャッジ日時 2024-05-31 22:04:41
合計ジャッジ時間 6,994 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,764 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 11 ms
6,944 KB
testcase_20 AC 8 ms
6,940 KB
testcase_21 AC 924 ms
94,440 KB
testcase_22 AC 448 ms
46,632 KB
testcase_23 AC 269 ms
32,856 KB
testcase_24 AC 441 ms
48,776 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <tuple>
#include <unordered_set>

using namespace std;
using ll = long long;

int main()
{
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    // cout << fixed << setprecision(18);
    
    ll n;
    cin>>n;

    ll now = 1;
    queue<tuple<ll,ll,ll>> q;
    unordered_set<ll> visited; // 訪問済みの状態を追跡
    q.push({now,0,0});
    visited.insert(now); // 初期状態を訪問済みに設定

    while(!q.empty()){
        auto [now, s, sz] = q.front(); q.pop();
        if (now==n){
            string ans = "";
            while(sz){
                if (s & 1){
                    ans += 'B';                    
                }else{
                    ans += 'A';
                }
                s >>= 1;
                sz -= 1;
            }
            cout << ans << endl;
            return 0;
        }
        if (now * 2 + 1 <= n && visited.find(now * 2 + 1) == visited.end()){
            q.push({now * 2 + 1, s, sz + 1});
            visited.insert(now * 2 + 1);
        }
        if (now * 3 + 1 <= n && visited.find(now * 3 + 1) == visited.end()){
            q.push({now * 3 + 1, s + (1LL << sz), sz + 1});
            visited.insert(now * 3 + 1);
        }
    }
    cout << endl;   
    return 0;
}
0