結果

問題 No.2864 String of yuusaan
ユーザー Moss_LocalMoss_Local
提出日時 2024-08-30 21:39:43
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,466 bytes
コンパイル時間 1,035 ms
コンパイル使用メモリ 88,516 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-30 21:39:47
合計ジャッジ時間 3,491 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

const string base = "yuusaan";

// 各レベルの文字列の長さを保存する配列
vector<long long> length_cache(16, 0);

// レベルNの長さをキャッシュを使って計算する関数
long long calculate_length(int level) {
    if (length_cache[level] != 0) {
        return length_cache[level];
    }

    if (level == 1) {
        length_cache[level] = base.size();
    } else {
        long long prev_length = calculate_length(level - 1);
        length_cache[level] = 6 * prev_length + (prev_length - base.size());
    }

    return length_cache[level];
}

// レベルNの文字列のK文字目を取得する再帰関数
char find_character(int level, long long k) {
    if (level == 1) {
        return base[k - 1];
    }

    long long prev_length = calculate_length(level - 1);
    for (char c : base) {
        if (c == 'y' || c == 'n') {
            if (k <= prev_length) {
                return find_character(level - 1, k);
            } else {
                k -= prev_length;
            }
        } else {
            if (k == 1) {
                return c;
            }
            k--;
        }
    }

    return '?'; // ここに到達することはない
}

int main() {
    int N;
    long long K;
    cin >> N >> K;

    // 各レベルの長さを事前に計算しておく
    calculate_length(N);

    cout << find_character(N, K) << endl;

    return 0;
}
0