結果

問題 No.2868 Another String of yuusaan
ユーザー InTheBloomInTheBloom
提出日時 2024-08-30 23:56:45
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,655 bytes
コンパイル時間 1,219 ms
コンパイル使用メモリ 89,576 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-30 23:56:48
合計ジャッジ時間 2,258 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 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,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cassert>

using namespace std;
using ll = long long;

int main () {
    ll N, K; cin >> N >> K;

    // ちゃんと見ないといけないのはO(log(K))レベルくらいまで。
    if (K <= N) {
        cout << "y" << "\n";
        return 0;
    }

    // ちゃんと見ないといけないレベルのところまで掘り進める。

    const string yuusaan = "yuusaan";
    const int max_level = 25;
    vector<ll> length(max_level + 1);
    length[1] = 7;
    for (int i = 2; i <= max_level; i++) length[i] = 4 * length[i - 1] + 3;

    auto f = [&] (auto f, int level, ll place) {
        assert(level <= 25);
        assert(0 <= place);
        assert(place <= length[level]);
        if (level == 1) return yuusaan[place - 1];

        if (place == 1) return 'y';
        if (place == 2 + 2 * length[level - 1]) return 's';
        if (place == 3 + 4 * length[level - 1]) return 'n';

        ll cur = 1;
        if (place <= cur + length[level - 1]) return f(f, level - 1, place - cur);
        cur += length[level - 1];

        if (place <= cur + length[level - 1]) return f(f, level - 1, place - cur);
        cur += length[level - 1];

        cur++;

        if (place <= cur + length[level - 1]) return f(f, level - 1, place - cur);
        cur += length[level - 1];

        if (place <= cur + length[level - 1]) return f(f, level - 1, place - cur);
        cur += length[level - 1];

        assert(0);
    };

    for (int i = 1; i <= max_level; i++) {
        if (K - (N - i) <= length[i]) {
            cout << f(f, i, K - (N - i)) << "\n";
            break;
        }
    }
}
0