結果

問題 No.2893 Minahoshi (Hard)
ユーザー 👑 seekworserseekworser
提出日時 2024-09-07 00:21:38
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 2,135 bytes
コンパイル時間 5,325 ms
コンパイル使用メモリ 293,052 KB
実行使用メモリ 11,144 KB
最終ジャッジ日時 2024-09-13 20:52:48
合計ジャッジ時間 9,579 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 24 ms
5,684 KB
testcase_02 AC 30 ms
7,436 KB
testcase_03 AC 23 ms
11,144 KB
testcase_04 AC 20 ms
7,052 KB
testcase_05 AC 22 ms
11,136 KB
testcase_06 AC 20 ms
5,376 KB
testcase_07 AC 16 ms
5,376 KB
testcase_08 AC 17 ms
5,376 KB
testcase_09 AC 41 ms
10,880 KB
testcase_10 AC 26 ms
7,116 KB
testcase_11 AC 25 ms
7,052 KB
testcase_12 AC 34 ms
7,244 KB
testcase_13 AC 22 ms
6,924 KB
testcase_14 AC 16 ms
5,452 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 26 ms
6,984 KB
testcase_17 AC 26 ms
6,988 KB
testcase_18 AC 19 ms
7,056 KB
testcase_19 AC 26 ms
7,056 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 20 ms
7,052 KB
testcase_22 AC 11 ms
5,376 KB
testcase_23 AC 24 ms
7,056 KB
testcase_24 AC 11 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 16 ms
5,576 KB
testcase_28 AC 26 ms
6,948 KB
testcase_29 AC 35 ms
7,316 KB
testcase_30 AC 46 ms
10,756 KB
testcase_31 AC 20 ms
6,932 KB
testcase_32 AC 21 ms
6,928 KB
testcase_33 AC 43 ms
10,752 KB
testcase_34 AC 41 ms
10,860 KB
testcase_35 AC 19 ms
7,060 KB
testcase_36 AC 20 ms
6,932 KB
testcase_37 AC 51 ms
10,760 KB
testcase_38 AC 20 ms
6,924 KB
testcase_39 AC 20 ms
6,940 KB
testcase_40 AC 20 ms
6,928 KB
testcase_41 AC 21 ms
7,060 KB
testcase_42 AC 42 ms
10,756 KB
testcase_43 AC 47 ms
10,888 KB
testcase_44 AC 44 ms
10,884 KB
testcase_45 AC 47 ms
10,884 KB
testcase_46 AC 44 ms
10,760 KB
testcase_47 AC 42 ms
10,760 KB
testcase_48 AC 20 ms
7,056 KB
testcase_49 AC 20 ms
7,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//line 1 "answer.cpp"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

const vector<int> ns = {1, 2, 5, 10, 19, 36, 69, 134, 263, 520, 1033, 2058, 4107, 8204, 16397, 32782, 65551, 131088, 262161};
const vector<vector<int>> primitive_polynomials = {
    {},
    {1},
    {1, 2},
    {1, 3},
    {3, 4},
    {3, 5},
    {5, 6},
    {6, 7},
    {4, 5, 6, 8},
    {5, 9},
    {7, 10},
    {9, 11},
    {4, 10, 11, 12},
    {8, 11, 12, 13},
    {2, 12, 13, 14},
    {14, 15},
    {11, 13, 14, 16},
    {14, 17},
    {11, 18},
};
vector<pair<int, int>> lfsr(ll d) {
    vector<int> p = primitive_polynomials[d];
    ll x = (1 << d) - 1;
    vector<int> r;
    while (r.size() == 0 || r[0] != x) {
        r.push_back(x);
        x <<= 1;
        for (auto k : p) if ((x >> k) & 1) x ^= 1;
        if ((x >> d) & 1) x ^= (1 << d);
    }
    r.insert(find(r.begin(), r.end(), (1 << (d-1))) + 1, 0);
    vector<pair<int, int>> result(1 << d);
    for (size_t i=0; i < (1 << d); ++i) { result[r[i]] = {0, r[(i+1) % (r.size())]}; }
    return result;
}

int solve(int n) {
    if (n == 1) {cout << "a" << endl; return 0;}
    int d = (upper_bound(ns.begin(), ns.end(), n) - ns.begin()) - 1;
    vector<vector<pair<int, int>>> c(2);
    c[0] = lfsr(d);
    c[1] = vector<pair<int, int>>(1 << d, {-1, -1});
    int l = ns[d];
    int s = 0;
    unordered_set<int> r;
    for (int x=0; x < (1 << d); ++x) r.insert(x);
    while (l < n) {
        int x = *r.begin();
        while (c[1][x].first == -1) {
            r.erase(x);
            l += 1;
            c[1][x] = {1, c[0][x].second ^ 1};
            x = c[1][x].second;
        }
        s = c[0][x].second;
        swap(c[0][x], c[1][x]);
    }
    pair<int, int> pos = {0, s};
    string ans;
    for (int i=d-1; i >= 0; i--) ans += ((pos.second >> i) & 1) ? 'a' : 'b';
    while (ans.size() < n) {
        auto [t, x] = pos;
        auto [tn, xn] = c[t][x];
        ans += (xn & 1) ? 'a' : 'b';
        pos = {tn, xn};
    }
    cout << ans << endl;
    return 0;
}
int main() {
    int t; cin >> t;
    while (t--) {
        int n; cin >> n;
        solve(n);
    }
}
0