結果

問題 No.2766 Delicious Multiply Spice
ユーザー elpheelphe
提出日時 2024-06-27 15:40:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 879 bytes
コンパイル時間 825 ms
コンパイル使用メモリ 83,104 KB
実行使用メモリ 473,628 KB
最終ジャッジ日時 2024-06-27 15:41:01
合計ジャッジ時間 7,723 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 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 3 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 30 ms
9,088 KB
testcase_20 AC 17 ms
7,040 KB
testcase_21 AC 1,123 ms
165,632 KB
testcase_22 AC 551 ms
82,944 KB
testcase_23 AC 424 ms
68,992 KB
testcase_24 AC 611 ms
91,520 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 <set>
#include <algorithm>

using namespace std;

int main()
{
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    long long N;
    cin >> N;
    set<long long> taste;
    set<long long>::iterator itr, temp;
    string ans;
    taste.insert(1);

    for (itr = taste.begin(); itr != taste.end() && *itr < N; ++itr)
        taste.insert(*itr * 2 + 1), taste.insert(*itr * 3 + 1);

    if (*itr != N)
    {
        cout << "Impossible!\n";
        return 0;
    }

    while (*itr != 1)
    {
        if ((*itr - 1) % 2 == 0 && (temp = taste.find((*itr - 1) / 2)) != taste.end())
            ans.push_back('A'), itr = temp;
        else if ((*itr - 1) % 3 == 0 && (temp = taste.find((*itr - 1) / 3)) != taste.end())
            ans.push_back('B'), itr = temp;
    }

    reverse(ans.begin(), ans.end());
    cout << ans << '\n';
    return 0;
}
0