結果

問題 No.3299 K-th MMA String
ユーザー Iroha_3856
提出日時 2025-10-05 13:36:24
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 1,407 bytes
コンパイル時間 4,964 ms
コンパイル使用メモリ 334,984 KB
実行使用メモリ 20,896 KB
最終ジャッジ日時 2025-10-05 13:38:25
合計ジャッジ時間 6,216 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint = atcoder::modint998244353;
// using mint = double;

#define rep(i, l, r) for (int i = (int)(l); i<(int)(r); i++)
#define ll long long
#define ld long double
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define siz(x) (int)(x).size()

template<class T> bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
template<class T> bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }

const int inf = 1e9;
const ll INF = 4e18;

template<class T> using pq = priority_queue<T, vector<T>, less<T>>;
template<class T> using spq = priority_queue<T, vector<T>, greater<T>>;

vector<int> di = {0, 0, 1, -1};
vector<int> dj = {1, -1, 0, 0};

struct Edge {
    int to, cost;
};

void solve() {
    int N, K; cin >> N >> K;
    K--;
    int M = min(N, 22);
    vector<int> ans;
    rep(S, 0, 1<<M) {
        bool ok = false;
        rep(i, 0, M - 2) {
            int x = (S>>i)&7;
            if (x == 6) ok = true;
        }
        if (ok) ans.push_back(S);
    }
    int t = ans[K];
    string S(N, 'A');
    rep(i, 0, M) {
        if (t>>i&1) S[N - i - 1] = 'M';
    }
    cout << S << endl;
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int T = 1;
    // cin >> T;
    while(T--) {
        solve();
    }
}
0