結果

問題 No.2893 Minahoshi (Hard)
ユーザー 👑 seekworserseekworser
提出日時 2024-07-02 09:11:24
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,906 bytes
コンパイル時間 3,362 ms
コンパイル使用メモリ 265,624 KB
実行使用メモリ 12,700 KB
最終ジャッジ日時 2024-09-13 20:50:46
合計ジャッジ時間 6,984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
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 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const vector<ll> pw2 = {2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048};
int solve() {
    ll n; cin >> n;
    deque<char> ans = {'a', 'b'};
    set<string> rem;
    while (ans.size() < n) {
        ll k = 0, pw2 = 2;
        while (pw2 + k < (int)ans.size()) { k++; pw2 *= 2; }
        if (pw2 + k == (int)ans.size()) {
            ans.push_back(ans[k]);
            for (ll bit=0; bit<(1LL << (k+2)); bit++) {
                string s = "";
                for (size_t i=0; i<k+2; i++) {
                    if (bit & (1LL << i)) s += 'a';
                    else s += 'b';
                }
                rem.insert(s);
            }
            for (size_t i=0; i<=ans.size()-(k+2); i++) {
                string s = "";
                for (size_t j=i; j<i+k+2; j++) s += ans[j];
                rem.erase(s);
            }
            continue;
        }
        auto get_suffix = [&]() -> string {
            string result = "";
            for (size_t j=0; j<k; j++) result += ans[(int)ans.size()-k+j];
            return result;
        };
        string suffix = get_suffix();
        bool flag = false;
        string tmp = "";
        for (auto s : rem) if (s.substr(0, k) == suffix) {
            flag = true;
            tmp = s;
            ans.push_back(s[k]);
            break;
        }
        if (flag) {
            rem.erase(tmp);
            continue;
        }
        string s = *rem.begin();
        rem.erase(rem.begin());
        while (true) {
            ans.push_back(ans[k]);
            ans.pop_front();
            suffix = get_suffix();
            if (s.substr(0, k) == suffix) break;
        }
        ans.push_back(s[k]);
    }
    for (size_t i=0; i<n; i++) cout << ans[i];
    cout << '\n';
    return 0;
}
int main() {
    ll t; cin >> t;
    for (int i=0; i<t; i++) solve();
    return 0;
}
0